mirror of
https://github.com/internetee/registry.git
synced 2025-07-23 03:06:14 +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
|