2020-09-25 21:02:34 +00:00
|
|
|
FactoryBot.define do
|
2022-05-16 08:29:59 +00:00
|
|
|
factory :category, class: 'Category' do
|
|
|
|
portal { portal }
|
2020-09-25 21:02:34 +00:00
|
|
|
name { 'MyString' }
|
|
|
|
description { 'MyText' }
|
|
|
|
position { 1 }
|
|
|
|
|
|
|
|
after(:build) do |category|
|
|
|
|
category.account ||= category.portal.account
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|