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
path: root/spec
diff options
context:
space:
mode:
authorShinya Maeda <shinya@gitlab.com>2017-11-06 10:00:39 +0300
committerShinya Maeda <shinya@gitlab.com>2017-11-06 10:00:39 +0300
commitc1f064cbe39d6008206a0fe31e10f4a5e0c9ad28 (patch)
tree5a6d6bdd1a502a817125aa98854dc65c31e20808 /spec
parent1d5f2f9c333534b7004501bcfa52ca873d6a3403 (diff)
Remove unique validation from external_url in Environment
Diffstat (limited to 'spec')
-rw-r--r--spec/models/environment_spec.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/spec/models/environment_spec.rb b/spec/models/environment_spec.rb
index f75de0a0d88..1ce1d595c60 100644
--- a/spec/models/environment_spec.rb
+++ b/spec/models/environment_spec.rb
@@ -18,7 +18,6 @@ describe Environment do
it { is_expected.to validate_length_of(:slug).is_at_most(24) }
it { is_expected.to validate_length_of(:external_url).is_at_most(255) }
- it { is_expected.to validate_uniqueness_of(:external_url).scoped_to(:project_id) }
describe '.order_by_last_deployed_at' do
let(:project) { create(:project, :repository) }