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:
Diffstat (limited to 'spec/models/service_spec.rb')
-rw-r--r--spec/models/service_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/models/service_spec.rb b/spec/models/service_spec.rb
index eaf19bd4fea..7e0c491bdfa 100644
--- a/spec/models/service_spec.rb
+++ b/spec/models/service_spec.rb
@@ -17,6 +17,16 @@ describe Service do
expect(build(:service, project_id: nil, template: true)).to be_valid
expect(build(:service, project_id: nil, template: false)).to be_invalid
end
+
+ context 'with an existing service template' do
+ before do
+ create(:service, type: 'Service', template: true)
+ end
+
+ it 'validates only one service template per type' do
+ expect(build(:service, type: 'Service', template: true)).to be_invalid
+ end
+ end
end
describe 'Scopes' do