如何在 ActionController TestCase (Rails 3.0.9) 中禁用渲染视图
禁用 ActionController::TestCase 实际渲染视图的正确方法是什么? 或者,在测试中渲染没有布局的视图的方法是什么?
使用 rr,我尝试过 Stub(@controller).render { "" }
但这破坏了assert_template断言。
谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我遇到了同样的问题,即仅禁用布局,同时仍然渲染主视图。对于 rspec 模拟,这对我有用:
我从未使用过 rr,但我想语法可能如下:
I had the same problem of disabling just layout, while still rendering the main view. With rspec mocks this works for me:
I've never used rr, but I would imagine the syntax might be as follows:
我想在 Rails 6 中执行此操作。使用 mocha gem:
对于其他版本的 Rails,确定答案的最简单方法是将
puts caller
添加到您的操作中并扫描回溯。找一些看起来很容易存根的东西并尝试一下。I wanted to do this in Rails 6. With the the mocha gem:
For other versions of Rails, the easiest way to determine the answer is to add
puts caller
to your action and scan the backtrace. Find something that looks easy to stub and try it.默认情况下它是禁用的。
如果你想启用你可以:
1)在spec_helper中调用它:
2)将此语句放在你的控制器测试类中:
如果你想禁用它,只需添加一个错误参数,例如:
参考:https://www.relishapp.com/rspec/rspec-rails/v/2-5/docs/controller-specs/render-views
It is by default disabled.
If you want to enable you can:
1) call this in spec_helper:
2) put this statement inside your controller test class:
If you want to disable it, just add a false parameter like:
Reference: https://www.relishapp.com/rspec/rspec-rails/v/2-5/docs/controller-specs/render-views