By default, Cucumber ignores rescue_from in your ApplicationController and reports any exceptions directly. This is accomplished by the following line in the Cucumber env.rb file

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

Is there a way to get rspec to ignore rescue_from as well? (Specifically, I'm wishing that I could get rspec to ignore rescue_from CanCan::AccessDenied.)

link|improve this question

75% accept rate
feedback

1 Answer

Can you not just put the same line into the spec_helper?

Why not just do the setup to have a logged in user present when testing? Will be a better test. You can put a hook into the spec_helper to do something before all your tests so you just put the sign in in one place for all your specs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.