summaryrefslogtreecommitdiff
path: root/spec/factories/ci/job_variables.rb
blob: d664b763abd9cce0b57861c9061aa24dac8c98ea (plain)
1
2
3
4
5
6
7
8
9
10
# 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
  end
end