blob: d738cac45d52e4385ee0560c66d3e41b7bebe2a5 (
plain) (
tree)
|
|
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
|