在使用Rspec 3测试Rails 3.0应用程序时,我一直收到路由错误。它无法检测我用于获取请求的路由。这是我的文件的样子:
的routes.rb
resources :proficiency_tests do
member do
resource :lag_components, only: [:edit, :update]
end
end
运行rake:routes返回:
edit_lag_components GET /proficiency_tests/:id/lag_components/edit(.:format) {:action=>"edit", :controller=>"lag_components"}
lag_components PUT /proficiency_tests/:id/lag_components(.:format) {:action=>"update", :controller=>"lag_components"}
控制器在:
app
|---controllers
|---lag_components_controller.rb
控制器的设置方式没有什么特别之处。
规范在:
spec
|---controllers
|---lag_components_controller.rb
测试设置如下:
要求'spec_helper'
describe LagSubmissionsController do
describe 'GET #edit' do
let(:proficiency_test) { create :proficiency_test }
it 'redirects' do
*tests*
end
end
end
以下是我尝试过的内容以及错误消息:
get(:edit, id: proficiency_test.id)
# => No route matches {:id=>11259, :controller=>"lag_submissions", :action=>"edit"}
get(:edit, id: proficiency_test.id, use_route: :edit_lag_components)
# => No route matches {:id=>11260, :controller=>"lag_submissions", :action=>"edit"}
get("/proficiency_tests/#{proficiency_test.id}/lag_components/edit")
# => No route matches {:controller=>"lag_submissions", :action=>"/proficiency_tests/11258/lag_components/edit"}
最后一个特别有趣,因为这是我在浏览器中用于呈现edit
页面的确切路线:
有谁知道发生了什么以及为什么找不到那条路线?不幸的是,这是一个较旧的应用程序,我不能改变路线。
答案 0 :(得分:1)
路由定义为lag_components,但您的控制器称为LagSubmissions。资源名称需要与控制器名称匹配 - 因此将控制器名称更改为LagComponentsController。