debian-mirror-gitlab/spec/factories/ci/group_variables.rb
2019-12-21 20:55:43 +05:30

16 lines
317 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :ci_group_variable, class: Ci::GroupVariable do
sequence(:key) { |n| "VARIABLE_#{n}" }
value { 'VARIABLE_VALUE' }
masked { false }
trait(:protected) do
add_attribute(:protected) { true }
end
group factory: :group
end
end