Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project_auto_devops.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 189d097d5e6995ae6d6bfdf76e7912e577c838f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FactoryBot.define do
  factory :project_auto_devops do
    project
    enabled true
    domain "example.com"
    deploy_strategy :continuous

    trait :manual do
      deploy_strategy :manual
    end
  end
end