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

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

FactoryBot.define do
  factory :issue_link do
    source factory: :issue
    target factory: :issue
  end
end