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.)