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:
authorMichael Kozono <mkozono@gmail.com>2018-01-09 23:09:18 +0300
committerMichael Kozono <mkozono@gmail.com>2018-01-09 23:09:18 +0300
commit48a018c608f3c3474c654ee78f82630e748655f5 (patch)
tree882bc9a01ffd943624eee123e88685a14e6e46e2
parenta2cb92495c3149b69eb734596e80fbdd54b0b2dc (diff)
Revert "Add test for permanent redirects of descendants"
This reverts commit a2cb92495c3149b69eb734596e80fbdd54b0b2dc.
-rw-r--r--spec/models/route_spec.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/spec/models/route_spec.rb b/spec/models/route_spec.rb
index f800e63ce48..2f141d96144 100644
--- a/spec/models/route_spec.rb
+++ b/spec/models/route_spec.rb
@@ -75,20 +75,6 @@ describe Route do
end
end
end
-
- context 'when the group has a subgroup' do
- let!(:subgroup) { create(:group, parent: group) }
-
- context 'when path was changed, and then changed back to the original' do
- # Should this be valid?
- it 'is valid' do
- group.update!(path: 'git_lab2')
- group.path = 'git_lab'
-
- expect(group.valid?).to be_truthy
- end
- end
- end
end
end