mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 19:57:52 +01:00
10 lines
151 B
Ruby
10 lines
151 B
Ruby
|
|
FactoryBot.define do
|
||
|
|
factory :post do
|
||
|
|
title { "Post Title" }
|
||
|
|
description { "Post Description" }
|
||
|
|
board
|
||
|
|
user
|
||
|
|
post_status
|
||
|
|
end
|
||
|
|
end
|