7 lines
111 B
Ruby
7 lines
111 B
Ruby
FactoryGirl.define do
|
|
factory :comment do
|
|
user
|
|
post
|
|
content { Faker::Lorem.paragraph }
|
|
end
|
|
end
|