mirror of
https://github.com/zhigang1992/mitmproxy.git
synced 2026-04-01 09:15:09 +08: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"
|