我想在我的黄瓜步骤定义中伪造网络超时,如下所示:
Given(/^the network is timing out$/) do
stub_request(:any, 'www.example.com').to_raise(RestClient::GatewayTimeout)
end
它将给出stub_request不存在的错误。
所以,我的问题是在VCS中找到webmock对象的位置,所以我可以添加一个stub_request。
答案 0 :(得分:0)
require 'webmock/cucumber'
答案 1 :(得分:0)