11 lines
238 B
Ruby
11 lines
238 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :some_contact, class: Contact do
|
||
|
association :contact_list, factory: :empty_contact_list
|
||
|
association :contact_network
|
||
|
|
||
|
value { Faker::Internet.username }
|
||
|
end
|
||
|
end
|