summaryrefslogtreecommitdiff
path: root/spec/factories/ci/variables.rb
blob: 9d2501c4e1838eb206650b77cea59f103ff5ac7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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