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

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

FactoryBot.define do
  factory :bulk_import_export_upload, class: 'BulkImports::ExportUpload' do
    export { association(:bulk_import_export) }
  end
end