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

group_variables.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 64716842b12503bb50fac621c6b7ace50cce6b3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FactoryBot.define do
  factory :ci_group_variable, class: Ci::GroupVariable do
    sequence(:key) { |n| "VARIABLE_#{n}" }
    value 'VARIABLE_VALUE'

    trait(:protected) do
      protected true
    end

    group factory: :group
  end
end