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

export_relation.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: 2b6419dcecb9d1e4c023452a09724603365bd41b (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

FactoryBot.define do
  factory :project_relation_export, class: 'Projects::ImportExport::RelationExport' do
    project_export_job factory: :project_export_job

    relation { 'labels' }
    status { 0 }
    sequence(:jid) { |n| "project_relation_export_#{n}" }
  end
end