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

ghost_user_migrations.rb « users « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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