Welcome to mirror list, hosted at ThFree Co, Russian Federation.

label_priorities.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f9f2ddfa8922964471907506b886aba439b8247 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :label_priority do
    project
    label
    sequence(:priority)
  end
end