mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
6 lines
129 B
Ruby
6 lines
129 B
Ruby
FactoryGirl.define do
|
|
factory :nameserver do
|
|
sequence(:hostname) { |n| "ns.test#{n}.ee" }
|
|
ipv4 '192.168.1.1'
|
|
end
|
|
end
|