mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +01:00
10 lines
185 B
Ruby
10 lines
185 B
Ruby
FactoryBot.define do
|
|
factory :post do
|
|
sequence(:title) { |n| "Post #{n}" }
|
|
sequence(:description) { |n| "Post #{n} description" }
|
|
board
|
|
user
|
|
post_status
|
|
end
|
|
end
|