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>2021-10-01 15:13:32 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-10-01 15:13:32 +0300
commit6c7d90ede4d2890b2ca740239cd9a5338f12ba34 (patch)
tree59a0fde813364a626fe201dc58316dee001f96e1 /spec/lib/atlassian
parent3cb9e9a5070184e59cb6ff33a4ce381ed14a6fe5 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/lib/atlassian')
-rw-r--r--spec/lib/atlassian/jira_connect/serializers/deployment_entity_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/lib/atlassian/jira_connect/serializers/deployment_entity_spec.rb b/spec/lib/atlassian/jira_connect/serializers/deployment_entity_spec.rb
index 82bcbdc4561..8ccc3253a46 100644
--- a/spec/lib/atlassian/jira_connect/serializers/deployment_entity_spec.rb
+++ b/spec/lib/atlassian/jira_connect/serializers/deployment_entity_spec.rb
@@ -46,12 +46,22 @@ RSpec.describe Atlassian::JiraConnect::Serializers::DeploymentEntity do
using RSpec::Parameterized::TableSyntax
where(:env_name, :env_type) do
+ 'PRODUCTION' | 'production'
'prod' | 'production'
+ 'prod-east-2' | 'production'
+ 'us-prod-east' | 'production'
+ 'fe-production' | 'production'
'test' | 'testing'
+ 'qa-env-2' | 'testing'
'staging' | 'staging'
+ 'pre-prod' | 'staging'
+ 'blue-kit-stage' | 'staging'
+ 'pre-prod' | 'staging'
'dev' | 'development'
'review/app' | 'development'
'something-else' | 'unmapped'
+ 'store-produce' | 'unmapped'
+ 'unproductive' | 'unmapped'
end
with_them do