c21c839dca
* move source id from contacts * Fix contactInbox model name * rubocop fix * Fix rspec
10 lines
230 B
Ruby
10 lines
230 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :contact do
|
|
sequence(:name) { |n| "Widget #{n}" }
|
|
sequence(:email) { |n| "widget-#{n}@example.com" }
|
|
phone_number { '+123456789011' }
|
|
account
|
|
end
|
|
end
|