kombu/t/unit/test_exceptions.py

12 lines
229 B
Python
Raw Permalink Normal View History

from __future__ import annotations
2020-08-15 20:51:02 +00:00
from unittest.mock import Mock
from kombu.exceptions import HttpError
class test_HttpError:
def test_str(self) -> None:
assert str(HttpError(200, 'msg', Mock(name='response')))