851321f725
This column is no longer used. The form was removed in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/24580 and other usages removed in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/28460. Remove final usages of :domain
23 lines
721 B
Ruby
23 lines
721 B
Ruby
FactoryBot.define do
|
|
factory :project_auto_devops do
|
|
project
|
|
enabled true
|
|
deploy_strategy :continuous
|
|
|
|
trait :continuous_deployment do
|
|
deploy_strategy ProjectAutoDevops.deploy_strategies[:continuous] # rubocop:disable FactoryBot/DynamicAttributeDefinedStatically
|
|
end
|
|
|
|
trait :manual_deployment do
|
|
deploy_strategy ProjectAutoDevops.deploy_strategies[:manual] # rubocop:disable FactoryBot/DynamicAttributeDefinedStatically
|
|
end
|
|
|
|
trait :timed_incremental_deployment do
|
|
deploy_strategy ProjectAutoDevops.deploy_strategies[:timed_incremental] # rubocop:disable FactoryBot/DynamicAttributeDefinedStatically
|
|
end
|
|
|
|
trait :disabled do
|
|
enabled false
|
|
end
|
|
end
|
|
end
|