2014-03-31 12:18:40 +08:00
|
|
|
FactoryGirl.define do
|
|
|
|
factory :comment do
|
|
|
|
content 'content' * 10
|
2014-04-02 16:03:08 +08:00
|
|
|
name 'commentor'
|
|
|
|
email 'tester@xx.com'
|
2014-03-31 12:18:40 +08:00
|
|
|
association :post
|
|
|
|
end
|
2014-04-02 16:03:08 +08:00
|
|
|
|
|
|
|
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
|