2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
2020-03-09 13:42:32 +05:30
|
|
|
factory :ci_job_variable, class: 'Ci::JobVariable' do
|
2019-10-12 21:52:04 +05:30
|
|
|
sequence(:key) { |n| "VARIABLE_#{n}" }
|
2019-12-21 20:55:43 +05:30
|
|
|
value { 'VARIABLE_VALUE' }
|
2019-10-12 21:52:04 +05:30
|
|
|
|
|
|
|
job factory: :ci_build
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
trait :dotenv_source do
|
|
|
|
source { :dotenv }
|
|
|
|
end
|
2019-10-12 21:52:04 +05:30
|
|
|
end
|
|
|
|
end
|