diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-05-30 11:44:35 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-05-30 11:44:35 +0300 |
commit | 132575faa07384dd738e06b96ad892912d8a2725 (patch) | |
tree | c86d07a2bb2f926454e86c519df13a68afa5b327 /spec/routing/admin_routing_spec.rb | |
parent | 888e493b82435a074938aa25f823c2c9b0fb8026 (diff) | |
download | gitlab-ce-132575faa07384dd738e06b96ad892912d8a2725.tar.gz |
Fix routiong specs after rename of resque controller
Diffstat (limited to 'spec/routing/admin_routing_spec.rb')
-rw-r--r-- | spec/routing/admin_routing_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/routing/admin_routing_spec.rb b/spec/routing/admin_routing_spec.rb index c14fff5109b..36b546fb077 100644 --- a/spec/routing/admin_routing_spec.rb +++ b/spec/routing/admin_routing_spec.rb @@ -122,10 +122,10 @@ describe Admin::LogsController, "routing" do end end -# admin_resque GET /admin/resque(.:format) admin/resque#show -describe Admin::ResqueController, "routing" do +# admin_background_jobs GET /admin/background_jobs(.:format) admin/background_jobs#show +describe Admin::BackgroundJobsController, "routing" do it "to #show" do - get("/admin/resque").should route_to('admin/resque#show') + get("/admin/background_jobs").should route_to('admin/background_jobs#show') end end |