1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
FactoryGirl.define do factory :comment do user info_request body 'This a wise and helpful annotation.' comment_type 'request' factory :visible_comment do visible true end factory :hidden_comment do visible false end end end