mirror of https://github.com/celery/kombu.git
Added functional tests for Beanstalk transport
This commit is contained in:
parent
e8bfcaedcf
commit
7d72e78727
|
@ -0,0 +1,15 @@
|
|||
from nose import SkipTest
|
||||
|
||||
from kombu.tests.test_functional import transport
|
||||
|
||||
|
||||
class test_beanstalk(transport.TransportCase):
|
||||
transport = "beanstalk"
|
||||
prefix = "beanstalk"
|
||||
event_loop_max = 10
|
||||
|
||||
def after_connect(self, connection):
|
||||
connection.channel().client
|
||||
|
||||
def test_basic_get(self):
|
||||
raise SkipTest("beanstalk does not support synchronous access.")
|
Loading…
Reference in New Issue