Sha256: c53afe5b3212c8cadcf3811a7860879ed27ddf955c804e24b77a8d3d57269f25
Contents?: true
Size: 1.04 KB
Versions: 6
Compression:
Stored size: 1.04 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') require 'webmock_shared' require 'ostruct' require 'httpclient_spec_helper' describe "Webmock with HTTPClient" do include HTTPClientSpecHelper before(:each) do HTTPClientSpecHelper.async_mode = false end it_should_behave_like "WebMock" it "should yield block on response if block provided" do stub_http_request(:get, "www.example.com").to_return(:body => "abc") response_body = "" http_request(:get, "http://www.example.com/") do |body| response_body = body end response_body.should == "abc" end it "should match requests if headers are the same but in different order" do stub_http_request(:get, "www.example.com").with(:headers => {"a" => ["b", "c"]} ) http_request( :get, "http://www.example.com/", :headers => {"a" => ["c", "b"]}).status.should == "200" end describe "async requests" do before(:each) do HTTPClientSpecHelper.async_mode = true end it_should_behave_like "WebMock" end end
Version data entries
6 entries across 6 versions & 1 rubygems