Sha256: 11a303290f01c16bd555565fd5565d5b1aa963067fc1026e340eabe558301ba7
Contents?: true
Size: 704 Bytes
Versions: 91
Compression:
Stored size: 704 Bytes
Contents
shared_context "precedence of stubs" do |*adapter_info| describe "when choosing a matching request stub" do it "should use the last declared matching request stub" do stub_request(:get, "www.example.com").to_return(:body => "abc") stub_request(:get, "www.example.com").to_return(:body => "def") expect(http_request(:get, "http://www.example.com/").body).to eq("def") end it "should not be affected by the type of uri or request method" do stub_request(:get, "www.example.com").to_return(:body => "abc") stub_request(:any, /.*example.*/).to_return(:body => "def") expect(http_request(:get, "http://www.example.com/").body).to eq("def") end end end
Version data entries
91 entries across 89 versions & 8 rubygems