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