2019-10-12 18:08:41 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :contact do
|
2020-12-11 17:55:00 +00:00
|
|
|
sequence(:name) { |n| "Contact #{n}" }
|
|
|
|
sequence(:email) { |n| "contact-#{n}@example.com" }
|
2021-03-29 17:56:20 +00:00
|
|
|
phone_number { Faker::PhoneNumber.cell_phone_in_e164 }
|
2020-02-17 11:38:29 +00:00
|
|
|
avatar { fixture_file_upload(Rails.root.join('spec/assets/avatar.png'), 'image/png') }
|
2019-10-12 18:08:41 +00:00
|
|
|
account
|
|
|
|
end
|
|
|
|
end
|