internetee-registry/spec/fabricators/domain_contact_fabricator.rb
2014-12-10 11:35:48 +02:00

7 lines
161 B
Ruby

Fabricator(:domain_contact) do
contact { Fabricate(:contact) }
contact_type 'admin'
after_build do |x|
x.contact_code_cache = x.contact.code
end
end