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 271baca commit d666cc8Copy full SHA for d666cc8
test/hyperclient/link_test.rb
@@ -160,7 +160,7 @@ module Hyperclient
160
161
it 'defaults params to an empty hash' do
162
entry_point.connection.expects(:post).with('/productions/1', {})
163
- link.post
+ link.post.inspect
164
end
165
166
@@ -174,7 +174,7 @@ module Hyperclient
174
175
176
entry_point.connection.expects(:put).with('/productions/1', {})
177
- link.put
+ link.put.inspect
178
179
180
@@ -188,7 +188,7 @@ module Hyperclient
188
189
190
entry_point.connection.expects(:patch).with('/productions/1', {})
191
- link.patch
+ link.patch.inspect
192
193
194
0 commit comments