15 lines
261 B
Ruby
15 lines
261 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :contact, class: 'CustomerRelations::Contact' do
|
||
|
group
|
||
|
|
||
|
first_name { generate(:name) }
|
||
|
last_name { generate(:name) }
|
||
|
|
||
|
trait :with_organization do
|
||
|
organization
|
||
|
end
|
||
|
end
|
||
|
end
|