summaryrefslogtreecommitdiff
path: root/t/unit/test_exceptions.py
blob: d7002d2f0730c523bb5c02c483ef4c4cdfd21389 (plain)
1
2
3
4
5
6
7
8
9
from case import Mock

from kombu.exceptions import HttpError


class test_HttpError:

    def test_str(self):
        assert str(HttpError(200, 'msg', Mock(name='response')))