mirror of https://github.com/celery/kombu.git
16 lines
358 B
Python
16 lines
358 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from funtests import transport
|
|
|
|
from kombu.tests.case import skip
|
|
|
|
|
|
@skip.unless_module('kazoo')
|
|
class test_zookeeper(transport.TransportCase):
|
|
transport = 'zookeeper'
|
|
prefix = 'zookeeper'
|
|
event_loop_max = 100
|
|
|
|
def after_connect(self, connection):
|
|
connection.channel().client
|