2010-11-12 12:30:30 +00:00
|
|
|
from funtests import transport
|
2011-04-06 13:59:16 +00:00
|
|
|
from nose import SkipTest
|
2010-11-12 12:30:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
class test_pika_blocking(transport.TransportCase):
|
|
|
|
transport = "syncpika"
|
|
|
|
prefix = "syncpika"
|
|
|
|
|
2011-04-06 13:59:16 +00:00
|
|
|
def test_produce__consume_large_messages(self, *args, **kwargs):
|
|
|
|
raise SkipTest("test currently fails for sync pika")
|
2010-11-12 12:30:30 +00:00
|
|
|
|
2011-07-15 11:42:36 +00:00
|
|
|
def test_cyclic_reference_channel(self, *args, **kwargs):
|
|
|
|
raise SkipTest("known memory leak")
|
|
|
|
|
2011-04-21 16:29:51 +00:00
|
|
|
|
2010-11-12 12:30:30 +00:00
|
|
|
class test_pika_async(transport.TransportCase):
|
|
|
|
transport = "pika"
|
|
|
|
prefix = "pika"
|
2011-04-21 16:29:51 +00:00
|
|
|
|
2011-04-06 13:59:16 +00:00
|
|
|
def test_produce__consume_large_messages(self, *args, **kwargs):
|
|
|
|
raise SkipTest("test currently fails for async pika")
|
2011-07-15 11:42:36 +00:00
|
|
|
|
|
|
|
def test_cyclic_reference_channel(self, *args, **kwargs):
|
|
|
|
raise SkipTest("known memory leak")
|