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

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

FactoryBot.define do
  factory :ci_catalog_resource_sync_event, class: 'Ci::Catalog::Resources::SyncEvent' do
    catalog_resource factory: :ci_catalog_resource
    project { catalog_resource.project }
  end
end