From 7d72e787274b5abafc3adb127aed571bfa0546d9 Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Thu, 11 Nov 2010 15:16:09 +0100 Subject: [PATCH] Added functional tests for Beanstalk transport --- kombu/tests/test_functional/test_beanstalk.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 kombu/tests/test_functional/test_beanstalk.py diff --git a/kombu/tests/test_functional/test_beanstalk.py b/kombu/tests/test_functional/test_beanstalk.py new file mode 100644 index 00000000..a1c86535 --- /dev/null +++ b/kombu/tests/test_functional/test_beanstalk.py @@ -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.")