0
0
Fork 0
mirror of https://github.com/ENSL/ensl.org.git synced 2025-03-18 08:32:53 +00:00
ensl.org/spec/factories/post.rb
2020-03-15 15:33:58 +02:00

7 lines
114 B
Ruby

FactoryBot.define do
factory :post do
sequence(:text) { |n| "Post Body #{n}" }
topic
user
end
end