mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
11 lines
237 B
Ruby
11 lines
237 B
Ruby
FactoryBot.define do
|
|
factory :post do
|
|
sequence(:text) { |n| "Post Body #{n}" }
|
|
topic
|
|
user
|
|
|
|
trait :with_content do
|
|
text { (0..100).map { (0...8).map { (65 + rand(26)).chr }.join }.join(" ") }
|
|
end
|
|
end
|
|
end
|