2020-09-25 21:02:34 +00:00
|
|
|
FactoryBot.define do
|
2022-05-16 08:29:59 +00:00
|
|
|
factory :article, class: 'Article' do
|
2020-09-25 21:02:34 +00:00
|
|
|
account_id { 1 }
|
|
|
|
category_id { 1 }
|
|
|
|
author_id { 1 }
|
|
|
|
title { 'MyString' }
|
|
|
|
content { 'MyText' }
|
2022-06-13 10:26:49 +00:00
|
|
|
description { 'MyDescrption' }
|
2020-09-25 21:02:34 +00:00
|
|
|
status { 1 }
|
|
|
|
views { 1 }
|
|
|
|
end
|
|
|
|
end
|