diff options
author | Shinya Maeda <shinya@gitlab.com> | 2017-12-20 21:12:34 +0900 |
---|---|---|
committer | Shinya Maeda <shinya@gitlab.com> | 2018-01-08 17:18:04 +0900 |
commit | c519e4a7286e838d2ef56d4ca4841e5b9b7bc1a2 (patch) | |
tree | 3aeed618a6c88556c6aee966e395c96719bd135a | |
parent | f3f606966d7efb027e531344438e25a816c89c62 (diff) | |
download | gitlab-ce-c519e4a7286e838d2ef56d4ca4841e5b9b7bc1a2.tar.gz |
Add speccheck-environment-regex-ce
-rw-r--r-- | spec/lib/gitlab/regex_spec.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/lib/gitlab/regex_spec.rb b/spec/lib/gitlab/regex_spec.rb index 68a57826647..8b54d72d6f7 100644 --- a/spec/lib/gitlab/regex_spec.rb +++ b/spec/lib/gitlab/regex_spec.rb @@ -14,7 +14,7 @@ describe Gitlab::Regex do it { is_expected.not_to match('?gitlab') } end - describe '.environment_slug_regex' do + describe '.environment_name_regex' do subject { described_class.environment_name_regex } it { is_expected.to match('foo') } @@ -24,6 +24,7 @@ describe Gitlab::Regex do it { is_expected.to match('foo.1') } it { is_expected.not_to match('9&foo') } it { is_expected.not_to match('foo-^') } + it { is_expected.not_to match('!!()()') } end describe '.environment_slug_regex' do |