2018-03-17 18:26:18 +05:30
|
|
|
FactoryBot.define do
|
2017-09-10 17:25:29 +05:30
|
|
|
factory :ci_group_variable, class: Ci::GroupVariable do
|
|
|
|
sequence(:key) { |n| "VARIABLE_#{n}" }
|
|
|
|
value 'VARIABLE_VALUE'
|
|
|
|
|
|
|
|
trait(:protected) do
|
|
|
|
protected true
|
|
|
|
end
|
|
|
|
|
|
|
|
group factory: :group
|
|
|
|
end
|
|
|
|
end
|