5 lines
101 B
Ruby
5 lines
101 B
Ruby
FactoryGirl.define do
|
|
factory(:forum_post) do
|
|
body {Faker::Lorem.sentences.join(" ")}
|
|
end
|
|
end |