pass a block to `with`?
jmay opened this issue · 1 comments
jmay commented
WebMock supports expectations defined like
stub_request(:post, "www.example.com").with { |request| request.body == "abc" }
(matching request against a block rather than a direct comparison on body or headers)
This is not currently supported in webstub. I can take a shot at putting this in; is this already underway elsewhere?
mattgreen commented
Great idea! It's not underway, please feel free to submit a PR with tests. :)