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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-03-10 18:08:10 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-03-10 18:08:10 +0300
commit6ebe886c82111e1ab9e71d4c02a888d2312898bc (patch)
tree93775be141eb34e24c37c880e6d96b242267d3bc /spec/routing
parente3624c5be1696597bc6b351f56f1a84c2b13211b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/routing')
-rw-r--r--spec/routing/project_routing_spec.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/spec/routing/project_routing_spec.rb b/spec/routing/project_routing_spec.rb
index 79236b990d0..3a935ddbdd8 100644
--- a/spec/routing/project_routing_spec.rb
+++ b/spec/routing/project_routing_spec.rb
@@ -680,6 +680,32 @@ RSpec.describe 'project routing' do
end
end
+ describe Projects::ReleasesController, 'routing' do
+ it 'to #latest_permalink with a valid permalink path' do
+ expect(get('/gitlab/gitlabhq/-/releases/permalink/latest/downloads/release-binary.zip')).to route_to(
+ 'projects/releases#latest_permalink',
+ namespace_id: 'gitlab',
+ project_id: 'gitlabhq',
+ suffix_path: 'downloads/release-binary.zip'
+ )
+
+ expect(get('/gitlab/gitlabhq/-/releases/permalink/latest')).to route_to(
+ 'projects/releases#latest_permalink',
+ namespace_id: 'gitlab',
+ project_id: 'gitlabhq'
+ )
+ end
+
+ it 'to #show for the release with tag named permalink' do
+ expect(get('/gitlab/gitlabhq/-/releases/permalink')).to route_to(
+ 'projects/releases#show',
+ namespace_id: 'gitlab',
+ project_id: 'gitlabhq',
+ tag: 'permalink'
+ )
+ end
+ end
+
describe Projects::Registry::TagsController, 'routing' do
describe '#destroy' do
it 'correctly routes to a destroy action' do