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')
-rw-r--r--spec/models/project_label_spec.rb13
1 files changed, 12 insertions, 1 deletions
diff --git a/spec/models/project_label_spec.rb b/spec/models/project_label_spec.rb
index c861d4b73bb..cd4732fb737 100644
--- a/spec/models/project_label_spec.rb
+++ b/spec/models/project_label_spec.rb
@@ -48,7 +48,18 @@ describe ProjectLabel, models: true do
project_label.valid?
- expect(project_label .errors[:title]).to be_empty
+ expect(project_label.errors[:title]).to be_empty
+ end
+ end
+
+ context 'when attempting to add more than one priority to the project label' do
+ it 'returns error' do
+ subject.priorities.build
+ subject.priorities.build
+
+ subject.valid?
+
+ expect(subject.errors[:priorities]).to include 'Number of permitted priorities exceeded'
end
end
end