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

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

FactoryBot.define do
  factory :relation_export_upload, class: 'Projects::ImportExport::RelationExportUpload' do
    relation_export factory: :project_relation_export
    export_file { fixture_file_upload("spec/fixtures/gitlab/import_export/labels.tar.gz") }
  end
end