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

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

FactoryBot.define do
  factory :ci_job_variable, class: 'Ci::JobVariable' do
    sequence(:key) { |n| "VARIABLE_#{n}" }
    value { 'VARIABLE_VALUE' }

    job factory: :ci_build

    trait :dotenv_source do
      source { :dotenv }
    end
  end
end