94bb660460
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
15 lines
264 B
Ruby
15 lines
264 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :ci_variable, class: Ci::Variable do
|
|
sequence(:key) { |n| "VARIABLE_#{n}" }
|
|
value 'VARIABLE_VALUE'
|
|
masked false
|
|
|
|
trait(:protected) do
|
|
protected true
|
|
end
|
|
|
|
project
|
|
end
|
|
end
|