debian-mirror-gitlab/spec/factories/ci/variables.rb
2020-03-13 15:44:24 +05:30

16 lines
294 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