Sha256: 31010df30478f348f9f79a911598cfcc19528778095206f0af8388e8a60ccb88
Contents?: true
Size: 1.32 KB
Versions: 92
Compression:
Stored size: 1.32 KB
Contents
shared_context "complex cross-concern behaviors" do |*adapter_info| it 'allows a response with multiple values for the same header to be recorded and played back exactly as-is' do WebMock.allow_net_connect! recorded_response = nil WebMock.after_request { |_,r| recorded_response = r } real_response = http_request(:get, webmock_server_url) stub_request(:get, webmock_server_url).to_return( :status => recorded_response.status, :body => recorded_response.body, :headers => recorded_response.headers ) played_back_response = http_request(:get, webmock_server_url) expect(played_back_response.headers.keys).to include('Set-Cookie') expect(played_back_response).to eq(real_response) end let(:no_content_url) { 'http://httpstat.us/204' } [nil, ''].each do |stub_val| it "returns the same value (nil or "") for a request stubbed as #{stub_val.inspect} that a real empty response has", :net_connect => true do unless http_library == :curb WebMock.allow_net_connect! real_response = http_request(:get, no_content_url) stub_request(:get, no_content_url).to_return(:status => 204, :body => stub_val) stubbed_response = http_request(:get, no_content_url) expect(stubbed_response.body).to eq(real_response.body) end end end end
Version data entries
92 entries across 90 versions & 9 rubygems