9 lines
239 B
Python
9 lines
239 B
Python
from app.services.system_settings import _coerce_limit
|
|
|
|
|
|
def test_pdf_concurrency_limit_is_clamped():
|
|
assert _coerce_limit(None) == 2
|
|
assert _coerce_limit(0) == 1
|
|
assert _coerce_limit(6) == 6
|
|
assert _coerce_limit(99) == 10
|