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

class TestHttpError:
    def test_simple(self):
        e = HttpError(404, "Not found")
        assert str(e)