我正在尝试对我的应用进行一些测试。根据本指南here
我运行这样的命令 rake test:profile 和 rake test:benchmark
这两次都给了我这样的错误:
DEPRECATION WARNING: ActionDispatch::ShowExceptions.rescue_responses is deprecated. Please configure your exceptio application config instead. (called from <top (required)> at /home3/ecotec11/rails_apps/darbs/config/environment.
/home3/ecotec11/rails_apps/darbs/app/models/admin.rb:1:in `<top (required)>': Admin is not a class (TypeError)
Admin.rb
class Admin < ActiveRecord::Base
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
attr_accessible :email, :password, :password_confirmation, :remember_me
end
有人有想法可以帮助我吗?感谢
答案 0 :(得分:1)
你可能有
class Admin < ActiveRecord::Base
作为admin.rb
文件中的第一行。但是您可能在应用程序的其他位置定义了常量名为Admin
的名称。更改此常量的名称。