summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShinya Maeda <shinya@gitlab.com>2017-12-20 21:12:34 +0900
committerShinya Maeda <shinya@gitlab.com>2018-01-08 17:18:04 +0900
commitc519e4a7286e838d2ef56d4ca4841e5b9b7bc1a2 (patch)
tree3aeed618a6c88556c6aee966e395c96719bd135a
parentf3f606966d7efb027e531344438e25a816c89c62 (diff)
downloadgitlab-ce-check-environment-regex-ce.tar.gz
-rw-r--r--spec/lib/gitlab/regex_spec.rb3
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