如何使用Webmock对任何正文和标头存根请求?我试图使用正则表达式

WebMock.stub_request(:post, 'api.quickblox.com/').with(:body => /.*?/, :headers => /.*?/).to_return(:status => 201, :body => "", :headers => {})


在rspec中,但它不起作用,它有

NoMethodError:
   undefined method `map' for /.*?/:Regexp

最佳答案

检出Webmock docs on headers。您需要为其提供一个哈希,其中包含有关您要匹配的内容的更多详细信息。

10-06 12:38