2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2019-07-03 16:14:28 +00:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :text_module do
|
2021-07-01 11:23:52 +00:00
|
|
|
name { "text module #{Faker::Number.unique.number(digits: 3)}" }
|
2020-06-22 09:57:45 +00:00
|
|
|
keywords { Faker::Superhero.prefix }
|
2019-07-03 16:14:28 +00:00
|
|
|
content { Faker::Lorem.sentence }
|
|
|
|
updated_by_id { 1 }
|
|
|
|
created_by_id { 1 }
|
|
|
|
end
|
|
|
|
end
|