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

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

FactoryBot.define do
  factory :issuable_severity do
    association :issue, factory: :incident
  end
end