mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
12 lines
338 B
Ruby
12 lines
338 B
Ruby
Fabricator(:domain) do
|
|
name { "#{Faker::Internet.domain_word}.ee" }
|
|
valid_to Date.new(2014, 8, 7)
|
|
period 1
|
|
period_unit 'y'
|
|
owner_contact(fabricator: :contact)
|
|
nameservers(count: 3)
|
|
domain_contacts(count: 1) { Fabricate(:domain_contact, contact_type: 'admin') }
|
|
registrar
|
|
auth_info '98oiewslkfkd'
|
|
dnskeys(count: 1)
|
|
end
|