6 lines
118 B
Ruby
6 lines
118 B
Ruby
Factory.define(:comment) do |f|
|
|
f.post {|x| x.association(:post)}
|
|
f.body {Faker::Lorem.sentences}
|
|
f.score 0
|
|
end
|