This commit is contained in:
João Victor Geonizeli
2022-02-27 17:02:37 -03:00
parent 53c7d35d74
commit 1d692b31f8
13 changed files with 258 additions and 3 deletions

7
spec/factories/posts.rb Normal file
View File

@@ -0,0 +1,7 @@
FactoryBot.define do
factory :post do
content { Faker::Lorem.paragraph }
user
quoted_post { nil }
end
end