Merge pull request #1405 from hramezani/test_has_message_body
Add test for has_message_body helper function.
This commit is contained in:
commit
0e9f350982
14
tests/test_helpers.py
Normal file
14
tests/test_helpers.py
Normal 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
|
Loading…
Reference in New Issue
Block a user