mirror of
https://github.com/internetee/registry.git
synced 2025-08-05 17:28:18 +02:00
16 lines
317 B
Ruby
16 lines
317 B
Ruby
FactoryGirl.define do
|
|
factory :contact do
|
|
name 'test'
|
|
sequence(:code) { |n| "test#{n}" }
|
|
phone '+123.456789'
|
|
email 'test@test.com'
|
|
street 'test'
|
|
city 'test'
|
|
zip 12345
|
|
country_code 'EE'
|
|
ident '37605030299'
|
|
ident_type 'priv'
|
|
ident_country_code 'EE'
|
|
registrar
|
|
end
|
|
end
|