Commit 5577ee826db7cdb01c348a6bbaef867a02719e2e
1 parent
e0df75de
Exists in
master
and in
4 other branches
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 | 344 | # PUT /:project_id/issues/:id(.:format) issues#update |
| 345 | 345 | # DELETE /:project_id/issues/:id(.:format) issues#destroy |
| 346 | 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 | 347 | it "to #bulk_update" do |
| 352 | 348 | post("/gitlabhq/issues/bulk_update").should route_to('issues#bulk_update', project_id: 'gitlabhq') |
| 353 | 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 | 351 | it_behaves_like "RESTful project resources" do |
| 360 | 352 | let(:controller) { 'issues' } |
| 361 | 353 | let(:actions) { [:index, :create, :new, :edit, :show, :update] } | ... | ... |