summaryrefslogtreecommitdiff
path: root/spec/routing
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-12-20 15:39:54 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-12-20 15:39:54 +0200
commitadb17d60522f17dd22dfda9b37ed874f4d4430cd (patch)
treeb73faae5686db22b04b4828f14ecdf92bbf19f4b /spec/routing
parent2f7effe804bdae9fca4ca0bb55c841664c2de978 (diff)
downloadgitlab-ce-adb17d60522f17dd22dfda9b37ed874f4d4430cd.tar.gz
Cleanup after issues refactor and fix test
Diffstat (limited to 'spec/routing')
-rw-r--r--spec/routing/project_routing_spec.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/routing/project_routing_spec.rb b/spec/routing/project_routing_spec.rb
index 25db2f91d4d..09e11588164 100644
--- a/spec/routing/project_routing_spec.rb
+++ b/spec/routing/project_routing_spec.rb
@@ -245,6 +245,7 @@ describe MergeRequestsController, "routing" do
it_behaves_like "RESTful project resources" do
let(:controller) { 'merge_requests' }
+ let(:actions) { [:index, :create, :new, :edit, :show, :update] }
end
end
@@ -325,6 +326,7 @@ end
describe MilestonesController, "routing" do
it_behaves_like "RESTful project resources" do
let(:controller) { 'milestones' }
+ let(:actions) { [:index, :create, :new, :edit, :show, :update] }
end
end
@@ -360,6 +362,7 @@ describe IssuesController, "routing" do
it_behaves_like "RESTful project resources" do
let(:controller) { 'issues' }
+ let(:actions) { [:index, :create, :new, :edit, :show, :update] }
end
end