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

16 lines
292 B
Ruby

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