template.rb 173 B

12345678
  1. FactoryBot.define do
  2. factory :template do
  3. name { Faker::Name.unique.name }
  4. options { {} }
  5. updated_by_id { 1 }
  6. created_by_id { 1 }
  7. end
  8. end