wblog/spec/factories/comments.rb

15 lines
277 B
Ruby
Raw Normal View History

2014-03-31 12:18:40 +08:00
FactoryGirl.define do
factory :comment do
content 'content' * 10
name 'commentor'
email 'tester@xx.com'
2014-03-31 12:18:40 +08:00
association :post
end
factory :comment_no_post, class: Comment do
content 'content' * 10
name 'commentor'
email 'tester@xx.com'
end
2014-03-31 12:18:40 +08:00
end