mitmproxy/test/http/test_exceptions.py
2015-08-01 12:40:40 +02:00

7 lines
170 B
Python

from netlib.http.exceptions import *
def test_HttpAuthenticationError():
x = HttpAuthenticationError({"foo": "bar"})
assert str(x)
assert "foo" in x.headers