aboutsummaryrefslogtreecommitdiffstats
path: root/test/http/test_exceptions.py
blob: aa57f83103993d9972bc4859afcc1f14d1e51ee8 (plain)
1
2
3
4
5
6
from netlib.http.exceptions import *

def test_HttpAuthenticationError():
    x = HttpAuthenticationError({"foo": "bar"})
    assert str(x)
    assert "foo" in x.headers