ae72757d23
Fixes: #4802
12 lines
252 B
Ruby
12 lines
252 B
Ruby
FactoryBot.define do
|
|
factory :article, class: 'Article' do
|
|
account_id { 1 }
|
|
category_id { 1 }
|
|
author_id { 1 }
|
|
title { 'MyString' }
|
|
content { 'MyText' }
|
|
description { 'MyDescrption' }
|
|
status { 1 }
|
|
views { 1 }
|
|
end
|
|
end
|