diff options
-rw-r--r-- | features/steps/shared/paths.rb | 2 | ||||
-rw-r--r-- | spec/routing/admin_routing_spec.rb | 6 | ||||
-rw-r--r-- | spec/routing/routing_spec.rb | 6 |
3 files changed, 4 insertions, 10 deletions
diff --git a/features/steps/shared/paths.rb b/features/steps/shared/paths.rb index b0d3b0f2a03..628a179ae9d 100644 --- a/features/steps/shared/paths.rb +++ b/features/steps/shared/paths.rb @@ -106,7 +106,7 @@ module SharedPaths end step 'I visit admin Resque page' do - visit admin_resque_path + visit admin_background_jobs_path end step 'I visit admin groups page' do 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 diff --git a/spec/routing/routing_spec.rb b/spec/routing/routing_spec.rb index 049cfeaab01..b6135b4ca81 100644 --- a/spec/routing/routing_spec.rb +++ b/spec/routing/routing_spec.rb @@ -8,18 +8,12 @@ describe SearchController, "routing" do end # gitlab_api /api API::API -# resque /info/resque Resque::Server # /:path Grack describe "Mounted Apps", "routing" do it "to API" do get("/api").should be_routable end - it "to Resque" do - pending - get("/info/resque").should be_routable - end - it "to Grack" do get("/gitlabhq.git").should be_routable end |