Files
growstuff/spec/factories/comments.rb
Miles Gould 2b84fa8bad Show previous comments when creating a comment.
- Move "show previous comments" into a partial
 - invoke said partial from the new comment form
 - add tests.
2013-04-29 21:30:26 +01:00

9 lines
218 B
Ruby

FactoryGirl.define do
factory :comment do
post
author
sequence(:body) { |n| "OMG LOL #{n}" } # because our commenters are more
# polite than YouTube's
end
end