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

from kombu.exceptions import HttpError


class test_HttpError:

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