summaryrefslogtreecommitdiff
path: root/spec/factories/issue_links.rb
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