Files
danbooru/test/factories/comment.rb
2013-04-28 00:04:52 -07:00

7 lines
112 B
Ruby

FactoryGirl.define do
factory(:comment) do |f|
post
body {Faker::Lorem.sentences.join(" ")}
end
end