我的测试文件中有:
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的正确方法是什么?提前谢谢。
答案 0 :(得分:0)
尝试allow(controller.request).to receive(:referer).and_return('bla')
警告说,不推荐使用.stub
语法。