mirror of
https://github.com/internetee/registry.git
synced 2025-07-25 03:58:27 +02:00
8 lines
289 B
Ruby
8 lines
289 B
Ruby
FactoryGirl.define do
|
|
factory :registrant, parent: :contact, class: Registrant do
|
|
name 'test'
|
|
|
|
factory :registrant_private_entity, class: Registrant, parent: :contact_private_entity
|
|
factory :registrant_legal_entity, class: Registrant, parent: :contact_legal_entity
|
|
end
|
|
end
|