debian-mirror-gitlab/spec/factories/namespaces/sync_events.rb

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

8 lines
185 B
Ruby
Raw Normal View History

2022-10-11 01:57:18 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :sync_event, class: 'Namespaces::SyncEvent' do
association :namespace, factory: :namespace, strategy: :build
end
end