BigW Consortium Gitlab

group_variables.rb 242 Bytes
Newer Older
Shinya Maeda committed
1 2 3 4 5 6 7 8 9 10 11 12
FactoryGirl.define do
  factory :ci_group_variable, class: Ci::GroupVariable do
    sequence(:key) { |n| "VARIABLE_#{n}" }
    value 'VARIABLE_VALUE'

    trait(:protected) do
      protected true
    end

    group factory: :group
  end
end