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

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

FactoryBot.define do
  factory :sync_event, class: 'Namespaces::SyncEvent' do
    association :namespace, factory: :namespace, strategy: :build
  end
end