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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-02-18 15:09:15 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-18 15:09:15 +0300
commit0637ba1e6e9024f35b2cbf561d9002ec17350bb3 (patch)
tree960cebf0e892710c1b40f25e249d04aaf8f9b868 /spec/support
parent4720b569f0fcbb47e9f1a60e95172ae63b6f065a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/shared_examples/models/issue_tracker_service_shared_examples.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/support/shared_examples/models/issue_tracker_service_shared_examples.rb b/spec/support/shared_examples/models/issue_tracker_service_shared_examples.rb
index 0a483fd30ba..b275d594792 100644
--- a/spec/support/shared_examples/models/issue_tracker_service_shared_examples.rb
+++ b/spec/support/shared_examples/models/issue_tracker_service_shared_examples.rb
@@ -21,4 +21,8 @@ RSpec.shared_examples 'allows project key on reference pattern' do |url_attr|
expect(described_class.reference_pattern.match('3EXT_EXT-1234')).to eq nil
expect(described_class.reference_pattern.match('EXT_EXT-1234')[0]).to eq 'EXT_EXT-1234'
end
+
+ it 'does not allow issue number to finish with a letter' do
+ expect(described_class.reference_pattern.match('EXT-123A')).to eq(nil)
+ end
end