aboutsummaryrefslogtreecommitdiffstats
path: root/spec/support/refinery/factories/blog_comments.rb
blob: d738cac45d52e4385ee0560c66d3e41b7bebe2a5 (plain) (blame)
1
2
3
4
5
6
Factory.define :blog_comment, :class => 'refinery/blog_comment' do |f|
  f.name "Joe Commenter"
  f.sequence(:email) { |n| "person#{n}@example.com" }
  f.body "Which one is the best for picking up new shoes?"
  f.association :post, :factory => :blog_post
end