text_module.rb 350 B

1234567891011
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. FactoryBot.define do
  3. factory :text_module do
  4. name { "text module #{Faker::Number.unique.number(digits: 3)}" }
  5. keywords { Faker::Superhero.prefix }
  6. content { Faker::Lorem.sentence }
  7. updated_by_id { 1 }
  8. created_by_id { 1 }
  9. end
  10. end