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: 6653f0bb5c3897578b8b411798f4f476ac2e1c5d (plain)
1
2
3
4
5
6
FactoryGirl.define do
  factory :ci_variable, class: Ci::Variable do
    sequence(:key) { |n| "VARIABLE_#{n}" }
    value 'VARIABLE_VALUE'
  end
end