我得到了一个黄瓜步骤,定义如下:
When(/^I click on the button to create a new target$/) do
RSpec::Mocks.with_temporary_scope do
dummy_connection = double('Dummy connection')
allow(dummy_connection).to receive(:add_target)
.and_return({ target_id: "ABCD" }.to_json)
allow(MyConnection).to receive(:retrieve_connection).and_return dummy_connection
click_button "Create"
end
end
在我的控制器中,我有一个代理原始库类的小类:
class MyConnection
def self.retrieve_connection
Vws::Api.new(KEY, SECRET)
end
end
在执行测试时,“MyConnection.retrieve_connection”会尝试连接到 Web 服务,即使它已被删除。但是,如果在测试中我写
MyConnection.retrieve_connection.inspect => #<Double "Dummy connection">
所以MyConnection.retrieve_connection
返回虚拟连接,这是正确的。它只是在控制器中不起作用。
我没有想法,它似乎根本不起作用。有什么提示吗?