summaryrefslogtreecommitdiff
path: root/spec/factories/bulk_import/trackers.rb
blob: 03af5b41e0f2d3c0029db166d83d456f06818fcf (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

FactoryBot.define do
  factory :bulk_import_tracker, class: 'BulkImports::Tracker' do
    association :entity, factory: :bulk_import_entity

    stage { 0 }
    relation { :relation }
    has_next_page { false }
  end
end