summaryrefslogtreecommitdiff
path: root/spec/routing
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-12-20 20:17:25 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-12-20 20:17:25 +0200
commit6a5766e370bf16c98129086dbbe94a0747cb35f8 (patch)
tree2d0e0dc6a520a659124059557171b1d4d998d118 /spec/routing
parente37ecb7ea6e80d532eed68788a8e9a478122a686 (diff)
parentf4efb19038d01225374c91cca9274cce3d728b3d (diff)
downloadgitlab-ce-6a5766e370bf16c98129086dbbe94a0747cb35f8.tar.gz
Merge pull request #7978 from cirosantilli/edit-preview-route-test
Add tests for tree edit routes
Diffstat (limited to 'spec/routing')
-rw-r--r--spec/routing/project_routing_spec.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/routing/project_routing_spec.rb b/spec/routing/project_routing_spec.rb
index e6505040317..f149f3f62a9 100644
--- a/spec/routing/project_routing_spec.rb
+++ b/spec/routing/project_routing_spec.rb
@@ -430,6 +430,26 @@ describe Projects::TreeController, "routing" do
end
end
+describe Projects::EditTreeController, 'routing' do
+ it 'to #show' do
+ get('/gitlab/gitlabhq/edit/master/app/models/project.rb').should(
+ route_to('projects/edit_tree#show',
+ project_id: 'gitlab/gitlabhq',
+ id: 'master/app/models/project.rb'))
+ get('/gitlab/gitlabhq/edit/master/app/models/project.rb/preview').should(
+ route_to('projects/edit_tree#show',
+ project_id: 'gitlab/gitlabhq',
+ id: 'master/app/models/project.rb/preview'))
+ end
+
+ it 'to #preview' do
+ post('/gitlab/gitlabhq/edit/master/app/models/project.rb/preview').should(
+ route_to('projects/edit_tree#preview',
+ project_id: 'gitlab/gitlabhq',
+ id: 'master/app/models/project.rb'))
+ end
+end
+
# project_compare_index GET /:project_id/compare(.:format) compare#index {id: /[^\/]+/, project_id: /[^\/]+/}
# POST /:project_id/compare(.:format) compare#create {id: /[^\/]+/, project_id: /[^\/]+/}
# project_compare /:project_id/compare/:from...:to(.:format) compare#show {from: /.+/, to: /.+/, id: /[^\/]+/, project_id: /[^\/]+/}