text_module.rb 265 B

123456789
  1. FactoryBot.define do
  2. factory :text_module do
  3. name { "text module #{Faker::Number.unique.number(3)}" }
  4. keywords { Faker::Superhero.prefix }
  5. content { Faker::Lorem.sentence }
  6. updated_by_id { 1 }
  7. created_by_id { 1 }
  8. end
  9. end