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

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

    pipeline factory: :ci_empty_pipeline
  end
end