proxy_fetcher 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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