Chatwoot/spec/factories/categories.rb
2022-05-16 13:59:59 +05:30

12 lines
259 B
Ruby

FactoryBot.define do
factory :category, class: 'Category' do
portal { portal }
name { 'MyString' }
description { 'MyText' }
position { 1 }
after(:build) do |category|
category.account ||= category.portal.account
end
end
end