我已经使用devise和rspec配置了一个新的rails 3应用程序。我跟着设计维基,并把
RSpec.configure do |config|
config.include Devise::TestHelpers, :type => :controller
end
在spec / spec_helper.rb中。无论如何,当我尝试运行控制器规范时,我有错误:
spec/controllers/users_controller_spec.rb:3:in `<top (required)>': uninitialized constant UsersController (NameError)
在测试时听起来像装载路径中没有设计引擎类。有什么想法吗?
答案 0 :(得分:0)
UserController
可能会丢失。
如果没有,你可以将它粘贴在这里吗?