Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-07 22:18:48 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-07 22:18:48 +0400
commit5577ee826db7cdb01c348a6bbaef867a02719e2e (patch)
treea9fed8a713455625a7acd827ccd940b68a39f9c8 /spec/routing
parente0df75de3fbe640528e2b327a387e4ebce442055 (diff)
remove outdated routing specs
Diffstat (limited to 'spec/routing')
-rw-r--r--spec/routing/project_routing_spec.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/spec/routing/project_routing_spec.rb b/spec/routing/project_routing_spec.rb
index 41533f8b4fe..79f262c9470 100644
--- a/spec/routing/project_routing_spec.rb
+++ b/spec/routing/project_routing_spec.rb
@@ -344,18 +344,10 @@ end
# PUT /:project_id/issues/:id(.:format) issues#update
# DELETE /:project_id/issues/:id(.:format) issues#destroy
describe IssuesController, "routing" do
- it "to #sort" do
- post("/gitlabhq/issues/sort").should route_to('issues#sort', project_id: 'gitlabhq')
- end
-
it "to #bulk_update" do
post("/gitlabhq/issues/bulk_update").should route_to('issues#bulk_update', project_id: 'gitlabhq')
end
- it "to #search" do
- get("/gitlabhq/issues/search").should route_to('issues#search', project_id: 'gitlabhq')
- end
-
it_behaves_like "RESTful project resources" do
let(:controller) { 'issues' }
let(:actions) { [:index, :create, :new, :edit, :show, :update] }