mirror of https://github.com/celery/kombu.git
12 lines
228 B
Python
12 lines
228 B
Python
|
from funtests import transport
|
||
|
|
||
|
|
||
|
class test_pika_blocking(transport.TransportCase):
|
||
|
transport = "syncpika"
|
||
|
prefix = "syncpika"
|
||
|
|
||
|
|
||
|
class test_pika_async(transport.TransportCase):
|
||
|
transport = "pika"
|
||
|
prefix = "pika"
|