Skip to content

Files

Latest commit

 

History

History
25 lines (15 loc) · 488 Bytes

FactoryBot-ExcessiveCreateList.md

File metadata and controls

25 lines (15 loc) · 488 Bytes

Pattern: Excessive model creation in list

Issue: -

Description

Checks for excessive model creation in a list.

Examples

MaxAmount: 10 (default)

# We do not allow more than 10 items to be created

# bad
create_list(:merge_request, 1000, state: :opened)

# good
create_list(:merge_request, 10, state: :opened)

Further Reading