mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-15 21:22:09 +00:00
10 lines
191 B
Ruby
10 lines
191 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :project_custom_attribute do
|
|
project
|
|
sequence(:key) { |n| "key#{n}" }
|
|
sequence(:value) { |n| "value#{n}" }
|
|
end
|
|
end
|