Files
clientsflow/research/chatwoot/spec/factories/articles.rb

15 lines
335 B
Ruby

FactoryBot.define do
factory :article, class: 'Article' do
account
category { nil }
portal
locale { 'en' }
association :author, factory: :user
title { "#{Faker::Movie.title} #{SecureRandom.hex}" }
content { 'MyText' }
description { 'MyDescrption' }
status { :published }
views { 0 }
end
end