diff options
author | Douwe Maan <douwe@gitlab.com> | 2016-02-04 16:12:47 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2016-02-04 16:12:47 +0000 |
commit | ac923b4fb40da88d6c7907d08d4584d5d4a560e2 (patch) | |
tree | 79050d2d630b681d1ed97448e497be87c4905328 /spec | |
parent | dfe12649f64bcac76b270a96be04285bbe0c2aa2 (diff) | |
parent | 5dc77d7577bf19586f6cd756678d0c2660e7f868 (diff) | |
download | gitlab-ce-ac923b4fb40da88d6c7907d08d4584d5d4a560e2.tar.gz |
Merge branch 'fix/atom-url-issue' into 'master'
Fix atom url issue on projects
This MR adds prevents a project to have a path ending in .atom that conflicts with the feed
and
Adds a migration to migrate old .atom projects to a different path
Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/3699
See merge request !2651
Diffstat (limited to 'spec')
-rw-r--r-- | spec/controllers/projects_controller_spec.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/controllers/projects_controller_spec.rb b/spec/controllers/projects_controller_spec.rb index 665526fde93..6eee4dfe229 100644 --- a/spec/controllers/projects_controller_spec.rb +++ b/spec/controllers/projects_controller_spec.rb @@ -86,6 +86,14 @@ describe ProjectsController do end end end + + context "when the url contains .atom" do + let(:public_project_with_dot_atom) { build(:project, :public, name: 'my.atom', path: 'my.atom') } + + it 'expect an error creating the project' do + expect(public_project_with_dot_atom).not_to be_valid + end + end end describe "#destroy" do |