mirror of
https://github.com/internetee/registry.git
synced 2025-06-10 14:44:47 +02:00
7 lines
139 B
Ruby
7 lines
139 B
Ruby
FactoryBot.define do
|
|
factory :nameserver do
|
|
sequence(:hostname) { |n| "ns.test#{n}.ee" }
|
|
ipv4 '192.168.1.1'
|
|
domain
|
|
end
|
|
end
|