Sha256: 26acc231ff0f85e18033a8b815a41ed280d20876cf98d694244e4a779f174b27
Contents?: true
Size: 692 Bytes
Versions: 105
Compression:
Stored size: 692 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
105 entries across 99 versions & 8 rubygems