2020-04-08 14:13:33 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :user_detail do
|
|
|
|
user
|
|
|
|
job_title { 'VP of Sales' }
|
2021-09-04 01:27:46 +05:30
|
|
|
pronouns { nil }
|
2021-10-27 15:23:28 +05:30
|
|
|
pronunciation { nil }
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
end
|