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

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

FactoryBot.define do
  factory :bulk_import, class: 'BulkImport' do
    user
    source_type { :gitlab }
  end
end