Add test for has_message_body helper function.

This commit is contained in:
Hasan Ramezani 2018-11-07 21:29:12 +01:00
parent b63c06c75a
commit cf439f01f8
No known key found for this signature in database
GPG Key ID: D0E2D7CE14B68267

14
tests/test_helpers.py Normal file
View File

@ -0,0 +1,14 @@
from sanic.helpers import has_message_body
def test_has_message_body():
tests = (
(100, False),
(102, False),
(204, False),
(200, True),
(304, False),
(400, True),
)
for status_code, expected in tests:
assert has_message_body(status_code) is expected