type_lookup.rb 626 B

1234567891011121314151617
  1. FactoryBot.define do
  2. factory :type_lookup do
  3. name do
  4. # The following line ensures that the name generated by Faker
  5. # does not conflict with any existing names in the DB.
  6. # There's a special syntax for this
  7. # (Faker::Verb.unique.exclude(:past_participle, [], Ticket::StateType.pluck(:name)),
  8. # but it's not available yet in the current release of Faker (1.9.1).
  9. Faker::Verb.unique
  10. .instance_variable_get(:@previous_results)
  11. .dig([:base, []])
  12. .merge(TypeLookup.pluck(:name))
  13. Faker::Verb.unique.past_participle
  14. end
  15. end
  16. end