We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5e8f00 commit 4ee91c4Copy full SHA for 4ee91c4
spec/rack/reverse_proxy_spec.rb
@@ -103,11 +103,9 @@ def app
103
104
if %w|put post|.include?(method)
105
it "should forward the request payload" do
106
- pending "valid test with next release of WebMock" do
107
- stub_request(method.to_sym, 'http://example.com/test').to_return { |req| {:body => req.body} }
108
- eval "#{method} '/test', {:test => 'test'}"
109
- last_response.body.should == "test=test"
110
- end
+ stub_request(method.to_sym, 'http://example.com/test').to_return { |req| {:body => req.body} }
+ eval "#{method} '/test', {:test => 'test'}"
+ last_response.body.should == "test=test"
111
end
112
113
0 commit comments