【发布时间】:2010-12-16 23:35:30
【问题描述】:
我如何测试rescue_from 是RSpec?我想确保如果引发异常之一,控制器正确设置闪光灯并进行重定向。有没有办法模拟异常?
rescue_from PageAccessDenied do
flash[:alert] = "You do not have the necessary roles to access this page"
redirect_to root_url
end
rescue_from CanCan::AccessDenied do |exception|
flash[:alert] = exception.message
redirect_to root_url
end
【问题讨论】: