summaryrefslogtreecommitdiff
path: root/spec/factories/user_details.rb
blob: 6d58123f2e1f12a458f4bf5326ae88ebd9b355f1 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

FactoryBot.define do
  factory :user_detail do
    user
    job_title { 'VP of Sales' }
    pronouns { nil }
    pronunciation { nil }
  end
end