debian-mirror-gitlab/spec/factories/ci/group_variables.rb
2019-10-12 21:52:04 +05:30

15 lines
289 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
protected true
end
group factory: :group
end
end