debian-mirror-gitlab/spec/factories/group_custom_attributes.rb
2019-10-12 21:52:04 +05:30

10 lines
187 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :group_custom_attribute do
group
sequence(:key) { |n| "key#{n}" }
sequence(:value) { |n| "value#{n}" }
end
end