File size: 244 Bytes
f9aae2c
 
 
 
 
 
1
2
3
4
5
6
7
from app.core.http_status import HTTP_413_CONTENT_TOO_LARGE, HTTP_422_UNPROCESSABLE_CONTENT


def test_http_status_aliases_are_valid_codes() -> None:
    assert HTTP_413_CONTENT_TOO_LARGE == 413
    assert HTTP_422_UNPROCESSABLE_CONTENT == 422