ambition/spec/factories/comments.rb

20 lines
302 B
Ruby
Raw Normal View History

2016-12-26 10:19:56 +08:00
require 'faker'
FactoryGirl.define do
factory :comment do
sequence(:content){ |n| "This is comment content#{n}"}
factory :comment_content_null do
content ""
end
factory :comment_conten_allspace do
content " "
end
end
end