Added functional tests for Beanstalk transport

This commit is contained in:
Ask Solem 2010-11-11 15:16:09 +01:00
parent e8bfcaedcf
commit 7d72e78727
1 changed files with 15 additions and 0 deletions

View File

@ -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.")