我有一个资源,其中新操作需要用户登录才能查看.如果用户尝试在未登录的情况下创建新资源,则会将其重定向(302’d)到登录页面.我的功能测试看起来像这样:
test "should not get new unless logged in" do get :new assert_response :redirect end@H_404_4@stacktrace看起来像这样:
ArgumentError: uncaught throw :warden /.../gems/warden-1.1.1/lib/warden/proxy.rb:114:in `throw' /.../gems/ruby-1.9.2-p318/gems/warden-1.1.1/lib/warden/proxy.rb:114:in `authenticate!' /.../gems/ruby-1.9.2-p318/gems/devise-2.0.4/lib/devise/controllers/helpers.rb:48:in `authenticate_user!'@H_404_4@在新操作之前,我有一个before_filter到authenticate_user. @H_404_4@我理解为什么authenticate_user!失败但我无法理解为什么它会抛出一个错误.它不应该像在webapp中那样表现.将用户重定向到登录页面? @H_404_4@谢谢.
解决方法
按照
@L_502_0@说:
class ActionController::TestCase include Devise::TestHelpers end@H_404_4@特别是,不要将
include Devise::TestHelpers
放入class
ActiveSupport::TestCase
.