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:
authorDrew Blessing <drew@blessing.io>2016-01-08 18:52:05 +0300
committerDrew Blessing <drew@blessing.io>2016-01-08 18:52:05 +0300
commitc1e974ed889dd31fbbddfa2daeb1a681043d5aa0 (patch)
treef18f39a74c7af8be6e7ed9ea8a4caac9b21c969c /spec/routing
parent255a63564bcb0cf3125be1fbcfe0d9c269e513cf (diff)
parent0b2fa3bfa4bea00973ad6b8c3dfb8302d84fe4de (diff)
Merge branch 'issue_3076' into 'master'
Fix problem with projects ending with .keys #3076 Closes #3076 Move route `:username.keys` below project's routes. This allow project's to handle names ending with `.keys` See merge request !1883
Diffstat (limited to 'spec/routing')
-rw-r--r--spec/routing/project_routing_spec.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/routing/project_routing_spec.rb b/spec/routing/project_routing_spec.rb
index 2a70c190337..22ba25217f0 100644
--- a/spec/routing/project_routing_spec.rb
+++ b/spec/routing/project_routing_spec.rb
@@ -80,6 +80,7 @@ describe ProjectsController, 'routing' do
it 'to #show' do
expect(get('/gitlab/gitlabhq')).to route_to('projects#show', namespace_id: 'gitlab', id: 'gitlabhq')
+ expect(get('/gitlab/gitlabhq.keys')).to route_to('projects#show', namespace_id: 'gitlab', id: 'gitlabhq.keys')
end
it 'to #update' do