Commit 5577ee826db7cdb01c348a6bbaef867a02719e2e

Authored by Dmitriy Zaporozhets
1 parent e0df75de

remove outdated routing specs

Showing 1 changed file with 0 additions and 8 deletions   Show diff stats
spec/routing/project_routing_spec.rb
@@ -344,18 +344,10 @@ end @@ -344,18 +344,10 @@ end
344 # PUT /:project_id/issues/:id(.:format) issues#update 344 # PUT /:project_id/issues/:id(.:format) issues#update
345 # DELETE /:project_id/issues/:id(.:format) issues#destroy 345 # DELETE /:project_id/issues/:id(.:format) issues#destroy
346 describe IssuesController, "routing" do 346 describe IssuesController, "routing" do
347 - it "to #sort" do  
348 - post("/gitlabhq/issues/sort").should route_to('issues#sort', project_id: 'gitlabhq')  
349 - end  
350 -  
351 it "to #bulk_update" do 347 it "to #bulk_update" do
352 post("/gitlabhq/issues/bulk_update").should route_to('issues#bulk_update', project_id: 'gitlabhq') 348 post("/gitlabhq/issues/bulk_update").should route_to('issues#bulk_update', project_id: 'gitlabhq')
353 end 349 end
354 350
355 - it "to #search" do  
356 - get("/gitlabhq/issues/search").should route_to('issues#search', project_id: 'gitlabhq')  
357 - end  
358 -  
359 it_behaves_like "RESTful project resources" do 351 it_behaves_like "RESTful project resources" do
360 let(:controller) { 'issues' } 352 let(:controller) { 'issues' }
361 let(:actions) { [:index, :create, :new, :edit, :show, :update] } 353 let(:actions) { [:index, :create, :new, :edit, :show, :update] }