mirror of https://github.com/celery/kombu.git
10 lines
176 B
Python
10 lines
176 B
Python
|
from case import Mock
|
||
|
|
||
|
from kombu.exceptions import HttpError
|
||
|
|
||
|
|
||
|
class test_HttpError:
|
||
|
|
||
|
def test_str(self):
|
||
|
assert str(HttpError(200, 'msg', Mock(name='response')))
|