summaryrefslogtreecommitdiff
path: root/spec/factories/users/ghost_user_migrations.rb
blob: 0fe7cded4f38ff25271b215438be35cad20c7422 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :ghost_user_migration, class: 'Users::GhostUserMigration' do
    association :user
    initiator_user { association(:user) }
    hard_delete { false }
  end
end