是的,您可以模拟请求。我在这里有一个很长的答案来描述如何做到这一点,但实际上这不一定是你想要的。
只需在示例中的辅助对象上调用辅助方法即可。像这样:
describe "#item" do
it "does whatever" do
helper.item.should ...
end
end
这将使您可以访问测试请求对象。如果你需要为请求路径指定一个特定的值,你可以这样做:
before :each do
helper.request.path = 'some-path'
end
实际上,为了完整起见,让我包含我的原始答案,因为根据您尝试做的事情,它可能仍然会有所帮助。
以下是模拟请求的方法:
request = mock('request')
controller.stub(:request).and_return request
您可以类似地将存根方法添加到返回的请求中
request.stub(:method).and_return return_value
以及在一行中模拟和存根的替代语法:
request = mock('request', :method => return_value)
如果你的 mock 收到你没有存根的消息,Rspec 会抱怨。如果还有其他东西,只需在帮助器对象上调用您的请求帮助器方法,而您在测试中并不关心,您可以通过将模拟设置为“空对象”来关闭 rspec,例如。像这样
request = mock('request').as_null_object
看起来您可能需要通过以下特定测试:
describe "#item" do
let(:request){ mock('request', :fullpath => 'some-path') }
before :each do
controller.stub(:request).and_return request
end
it "does whatever"
end