2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
FactoryBot.define do
|
2020-03-13 15:44:24 +05:30
|
|
|
factory :ci_pipeline_schedule_variable, class: 'Ci::PipelineScheduleVariable' do
|
2017-09-10 17:25:29 +05:30
|
|
|
sequence(:key) { |n| "VARIABLE_#{n}" }
|
2019-12-21 20:55:43 +05:30
|
|
|
value { 'VARIABLE_VALUE' }
|
|
|
|
variable_type { 'env_var' }
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
pipeline_schedule factory: :ci_pipeline_schedule
|
|
|
|
end
|
|
|
|
end
|