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:
authorKamil Trzciński <ayufan@ayufan.eu>2018-06-07 21:27:30 +0300
committerKamil Trzciński <ayufan@ayufan.eu>2018-06-07 21:27:30 +0300
commitb780efab26b83124bd42abf276d0fc388ae68309 (patch)
treefdd5e88008aa897e68df61cffedf61a617a7aeee /spec/factories
parent2bc1835597446a1240cfb364d1943feb4080e675 (diff)
parentba4dc01ea83c261c4054c32482b021a1005a1968 (diff)
Merge remote-tracking branch 'origin/master' into 38542-application-control-panel-in-settings-page
Diffstat (limited to 'spec/factories')
-rw-r--r--spec/factories/project_auto_devops.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/factories/project_auto_devops.rb b/spec/factories/project_auto_devops.rb
index 189d097d5e6..b77f702f9e1 100644
--- a/spec/factories/project_auto_devops.rb
+++ b/spec/factories/project_auto_devops.rb
@@ -8,5 +8,9 @@ FactoryBot.define do
trait :manual do
deploy_strategy :manual
end
+
+ trait :disabled do
+ enabled false
+ end
end
end