internetee-registry/spec/factories/registrant_verification.rb
2017-10-28 20:56:49 +03:00

9 lines
220 B
Ruby

FactoryGirl.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