mirror of
https://github.com/internetee/registry.git
synced 2025-08-03 16:32:04 +02:00
7 lines
174 B
Ruby
7 lines
174 B
Ruby
FactoryBot.define do
|
|
factory :domain_transfer do
|
|
domain
|
|
transfer_from { FactoryBot.create(:registrar) }
|
|
transfer_to { FactoryBot.create(:registrar) }
|
|
end
|
|
end
|