mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 07:08:01 +00:00
Add Mocking Requests With Partial URIs Using Regex as a ruby til
This commit is contained in:
21
ruby/mocking-requests-with-partial-uris-using-regex.md
Normal file
21
ruby/mocking-requests-with-partial-uris-using-regex.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# Mocking Requests With Partial URIs Using Regex
|
||||
|
||||
Generally when mocking out requests with the
|
||||
[webmock](https://github.com/bblimke/webmock) gem, we specify full request
|
||||
URIs like so:
|
||||
|
||||
```ruby
|
||||
stub_request(:post, 'http://localhost:4000/api/posts')
|
||||
```
|
||||
|
||||
We may not want to specify the entire URI though. For instance, the host may
|
||||
change or be configurable. The `stub_request` method allows us to use regex.
|
||||
|
||||
```ruby
|
||||
stub_request(:post, %r|/api/posts|)
|
||||
```
|
||||
|
||||
Using the `%r` regex literal syntax, we are able to avoid escaping all of
|
||||
the `/` characters in our URI.
|
||||
|
||||
h/t Brian Dunn
|
||||
Reference in New Issue
Block a user