8b0e95ece8
- Fixing the recent flakiness in CI pipelines
12 lines
285 B
Ruby
12 lines
285 B
Ruby
FactoryBot.define do
|
|
factory :article, class: 'Article' do
|
|
account_id { 1 }
|
|
category_id { 1 }
|
|
author_id { 1 }
|
|
title { "#{Faker::Movie.title} #{SecureRandom.hex}" }
|
|
content { 'MyText' }
|
|
description { 'MyDescrption' }
|
|
status { 1 }
|
|
views { 1 }
|
|
end
|
|
end
|