作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
默认情况下,Cucumber 会忽略 ApplicationController 中的 rescue_from 并直接报告任何异常。这是通过 Cucumber env.rb 文件中的以下行完成的
# in features/support/env.rb
ActionController::Base.allow_rescue = false
rescue_from CanCan::AccessDenied
。)
最佳答案
你能不能把同一行放到 spec_helper 中?
为什么不进行设置以在测试时让登录用户在场?将是一个更好的测试。您可以在 spec_helper 中放置一个钩子(Hook),以便在所有测试之前执行某些操作,这样您只需将所有规范的登录信息放在一个地方即可。
关于ruby-on-rails - 如何在 rspec 测试中忽略 ApplicationController 中的 rescue_from?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6670399/
我是一名优秀的程序员,十分优秀!