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

14 lines
281 B
Ruby

FactoryBot.define do
factory :article, class: 'Article' do
account_id { 1 }
category_id { 1 }
folder_id { 1 }
author_id { 1 }
title { 'MyString' }
content { 'MyText' }
status { 1 }
views { 1 }
seo_title { 'MyString' }
seo { '' }
end
end