2019-07-25 01:11:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-13 19:13:44 -05:00
|
|
|
FactoryBot.define do
|
2020-01-09 13:07:52 -05:00
|
|
|
factory :ci_pipeline_schedule_variable, class: 'Ci::PipelineScheduleVariable' do
|
2017-06-21 05:25:01 -04:00
|
|
|
sequence(:key) { |n| "VARIABLE_#{n}" }
|
2019-10-01 20:06:26 -04:00
|
|
|
value { 'VARIABLE_VALUE' }
|
|
|
|
variable_type { 'env_var' }
|
2017-06-21 05:25:01 -04:00
|
|
|
|
|
|
|
pipeline_schedule factory: :ci_pipeline_schedule
|
|
|
|
end
|
|
|
|
end
|