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