From e8bfcaedcf074953efe8a305f36022b92b44c7dd Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Thu, 11 Nov 2010 15:15:49 +0100 Subject: [PATCH] Functional tests for Redis transport --- kombu/tests/test_functional/test_redis.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 kombu/tests/test_functional/test_redis.py diff --git a/kombu/tests/test_functional/test_redis.py b/kombu/tests/test_functional/test_redis.py new file mode 100644 index 00000000..60e4c91d --- /dev/null +++ b/kombu/tests/test_functional/test_redis.py @@ -0,0 +1,9 @@ +from kombu.tests.test_functional import transport + + +class test_redis(transport.TransportCase): + transport = "redis" + prefix = "redis" + + def after_connect(self, connection): + connection.channel().client