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