gitlab-org--gitlab-foss/spec/factories/incident_management/timeline_event_tag_links.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
335 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :incident_management_timeline_event_tag_link, class: 'IncidentManagement::TimelineEventTagLink' do
association :timeline_event_tag, factory: :incident_management_timeline_event_tag
association :timeline_event, factory: :incident_management_timeline_event
end
end