mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
9 lines
219 B
Ruby
9 lines
219 B
Ruby
FactoryBot.define do
|
|
factory :registrant_verification do
|
|
sequence(:domain_name) { |i| "domain#{i}.ee" }
|
|
domain
|
|
verification_token '123'
|
|
action 'confirmed'
|
|
action_type 'registrant_change'
|
|
end
|
|
end
|