mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 19:57:52 +01:00
8 lines
148 B
Ruby
8 lines
148 B
Ruby
FactoryBot.define do
|
|
factory :board do
|
|
sequence(:name) { |n| "Board#{n}" }
|
|
description { 'My fantastic board' }
|
|
order { 1 }
|
|
end
|
|
end
|