Sha256: 710b3831d153fce448a6957288b7db11d8d689e772d5d4346c207faf10365972
Contents?: true
Size: 1 KB
Versions: 2
Compression:
Stored size: 1 KB
Contents
require 'spec_helper' describe "Typhoeus 0.4 hook", :with_monkey_patches => :typhoeus_0_4 do after(:each) do ::Typhoeus::Hydra.clear_stubs end def disable_real_connections ::Typhoeus::Hydra.allow_net_connect = false ::Typhoeus::Hydra::NetConnectNotAllowedError end def enable_real_connections ::Typhoeus::Hydra.allow_net_connect = true end def directly_stub_request(method, url, response_body) response = ::Typhoeus::Response.new(:code => 200, :body => response_body) ::Typhoeus::Hydra.stub(method, url).and_return(response) end it_behaves_like 'a hook into an HTTP library', :typhoeus, 'typhoeus 0.4' describe "VCR.configuration.after_library_hooks_loaded hook" do it 'disables the webmock typhoeus adapter so it does not conflict with our typhoeus hook' do ::WebMock::HttpLibAdapters::TyphoeusAdapter.should_receive(:disable!) $typhoeus_after_loaded_hook.conditionally_invoke end end end if RUBY_INTERPRETER == :mri && ::Typhoeus::VERSION.to_f < 0.5
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vcr-2.4.0 | spec/vcr/library_hooks/typhoeus_0.4_spec.rb |
vcr-2.3.0 | spec/vcr/library_hooks/typhoeus_0.4_spec.rb |