aboutsummaryrefslogtreecommitdiffstats
path: root/test/http/test_exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/http/test_exceptions.py')
-rw-r--r--test/http/test_exceptions.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/http/test_exceptions.py b/test/http/test_exceptions.py
new file mode 100644
index 00000000..aa57f831
--- /dev/null
+++ b/test/http/test_exceptions.py
@@ -0,0 +1,6 @@
+from netlib.http.exceptions import *
+
+def test_HttpAuthenticationError():
+ x = HttpAuthenticationError({"foo": "bar"})
+ assert str(x)
+ assert "foo" in x.headers