Renames test_entities -> test_entity

This commit is contained in:
Ask Solem 2016-06-20 10:57:42 -07:00
parent d956dd9bb2
commit 8beb2eeac1
1 changed files with 7 additions and 0 deletions

View File

@ -3,6 +3,7 @@ from __future__ import absolute_import, unicode_literals
import pickle
from kombu import Connection, Exchange, Producer, Queue, binding
from kombu.abstract import MaybeChannelBound
from kombu.exceptions import NotBoundError
from kombu.serialization import registry
@ -406,3 +407,9 @@ class test_Queue(Case):
b = Queue('foo', self.exchange, 'foo')
self.assertIn('foo', repr(b))
self.assertIn('Queue', repr(b))
class test_MaybeChannelBound(Case):
def test_repr(self):
self.assertTrue(repr(MaybeChannelBound()))