aboutsummaryrefslogtreecommitdiffstats
path: root/spec/support/webmock/helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/webmock/helpers.rb')
-rw-r--r--spec/support/webmock/helpers.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/support/webmock/helpers.rb b/spec/support/webmock/helpers.rb
index fc6c77850..a6506c035 100644
--- a/spec/support/webmock/helpers.rb
+++ b/spec/support/webmock/helpers.rb
@@ -8,6 +8,11 @@ module Support
def make_headers(headers={}, authorization_token:)
headers.merge('Authorization' => "Token token=#{authorization_token.inspect}")
end
+
+ def with_stubbed_request( method, uri, &blk )
+ stub_request(method, uri).tap(&blk)
+ end
+
end
end
end