RSpec - 用于设置request.referrer的正确语法

时间:2017-03-02 11:59:03

标签: ruby-on-rails rspec

我的测试文件中有:

controller.request.stub referer: 'bla'

这会产生弃用警告:

Using `stub` from rspec-mocks' old `:should` syntax without explicitly enabling the syntax is deprecated. Use the new `:expect` syntax or explicitly enable `:should` instead.

在控制器规格中设置request.referrer的正确方法是什么?提前谢谢。

1 个答案:

答案 0 :(得分:0)

尝试allow(controller.request).to receive(:referer).and_return('bla')

警告说,不推荐使用.stub语法。