mitmproxy/test/http/test_exceptions.py

7 lines
170 B
Python
Raw Normal View History

2015-08-01 08:39:14 +00:00
from netlib.http.exceptions import *
def test_HttpAuthenticationError():
x = HttpAuthenticationError({"foo": "bar"})
assert str(x)
assert "foo" in x.headers