mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
7 lines
158 B
Python
7 lines
158 B
Python
|
from netlib.http import status_codes
|
||
|
|
||
|
|
||
|
def test_simple():
|
||
|
assert status_codes.IM_A_TEAPOT == 418
|
||
|
assert status_codes.RESPONSES[418] == "I'm a teapot"
|