ruby-on-rails – Rspec 3中Rspec any_instance的新特性是什么?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rspec 3中Rspec any_instance的新特性是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
通常在我的Rails控制器测试中,我将在{Website.any_instance.stub(:save).and_return(false)}之前进行测试,以记录记录不保存时会发生什么. Rspec 3看起来像any_instance消失了.

我尝试使用{allow(Website).to收到(:save).and_return(false)}为Rspec 3,但现在我得到这个错误

Website(id: integer,…) does not implement: save

使用Rspec 3可以替代非常有用的任务吗?

解决方法

尝试这个
allow_any_instance_of(Website).to receive(:save).and_return(false)

例如:https://github.com/rspec/rspec-mocks#settings-mocks-or-stubs-on-any-instance-of-a-class

原文链接:https://www.f2er.com/ruby/272650.html

猜你在找的Ruby相关文章