proxy_fetcher 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,14 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe ProxyFetcher::Providers::HideMyAss do
4
- before :all do
5
- ProxyFetcher.config.provider = :hide_my_ass
6
- end
7
-
8
- before do
9
- html = File.read(File.expand_path('../../../fixtures/hide_my_ass.html', __FILE__))
10
- allow(ProxyFetcher::Providers::Base).to receive(:load_html).and_return(html)
11
- end
12
-
13
- it_behaves_like 'a manager'
14
- end
@@ -1,14 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe ProxyFetcher::Providers::Hidster do
4
- before :all do
5
- ProxyFetcher.config.provider = :hidster
6
- end
7
-
8
- before do
9
- html = File.read(File.expand_path('../../../fixtures/hidster.html', __FILE__))
10
- allow(ProxyFetcher::Providers::Base).to receive(:load_html).and_return(html)
11
- end
12
-
13
- it_behaves_like 'a manager'
14
- end