Welcome to mirror list, hosted at ThFree Co, Russian Federation.

variables.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ae01d95f63d6aba4959bf6c5e11d8c431fee121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

FactoryBot.define do
  factory :ci_variable, class: 'Ci::Variable' do
    sequence(:key) { |n| "VARIABLE_#{n}" }
    value { 'VARIABLE_VALUE' }
    masked { false }
    variable_type { :env_var }

    trait(:protected) do
      add_attribute(:protected) { true }
    end

    trait(:file) do
      variable_type { :file }
    end

    project
  end
end