4

默认情况下,Cucumber 会忽略 ApplicationController 中的 rescue_from 并直接报告任何异常。这是通过 Cucumber env.rb 文件中的以下行完成的

# in features/support/env.rb
ActionController::Base.allow_rescue = false

有没有办法让 rspec 也忽略rescue_from?(具体来说,我希望我可以让 rspec 忽略rescue_from CanCan::AccessDenied。)

4

1 回答 1

2

你能不能把同一行放到 spec_helper 中?

为什么不进行设置以在测试时让登录用户在场?将是一个更好的测试。您可以在 spec_helper 中放置一个钩子,以便在所有测试之前执行某些操作,这样您只需将所有规范的登录信息放在一个地方即可。

于 2011-08-18T21:10:59.097 回答