我在我的应用程序上安装了功能性和自定义的 Rails 管理员,为了确保一切正常,我想为它做一些测试
我正在尝试完成这样的事情
require 'spec_helper'
describe RailsAdmin::MainController do
render_views
let(:admin) { FactoryGirl.create(:admin_user) }
describe "should manage a dashboard" do
before :each do
sign_in admin
end
it "should render dashboard" do
get :dashboard
response.should be_success
end
end
end
这是工作时间,但突然每次运行规范我都会收到此错误
Failure/Error: get :dashboard
ActionController::RoutingError:
No route matches {:controller=>"rails_admin/main", :action=>"dashboard"}
这是我的规范助手的副本 https://gist.github.com/3173172