Chatwoot/spec/factories/articles.rb
Tejaswini Chile 57fcb79d71
fix: Article slug auto saves (#5524)
- Auto save article slug
2022-09-30 07:25:23 -07:00

12 lines
260 B
Ruby

FactoryBot.define do
factory :article, class: 'Article' do
account_id { 1 }
category_id { 1 }
author_id { 1 }
title { Faker::Movie.title }
content { 'MyText' }
description { 'MyDescrption' }
status { 1 }
views { 1 }
end
end