mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-21 23:37:47 +00:00
10 lines
137 B
Ruby
10 lines
137 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :label_priority do
|
|
project
|
|
label
|
|
sequence(:priority)
|
|
end
|
|
end
|