Files
danbooru/test/factories/comment.rb
2012-01-27 14:22:47 -05:00

5 lines
116 B
Ruby

Factory.define(:comment) do |f|
f.post {|x| x.association(:post)}
f.body {Faker::Lorem.sentences.join(" ")}
end