summaryrefslogtreecommitdiff
path: root/t/integration
diff options
context:
space:
mode:
Diffstat (limited to 't/integration')
-rw-r--r--t/integration/tests/test_sqla.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/integration/tests/test_sqla.py b/t/integration/tests/test_sqla.py
new file mode 100644
index 00000000..f145c07e
--- /dev/null
+++ b/t/integration/tests/test_sqla.py
@@ -0,0 +1,13 @@
+from __future__ import absolute_import, unicode_literals
+
+from funtests import transport
+
+from kombu.tests.case import skip
+
+
+@skip.unless_module('sqlalchemy')
+class test_sqla(transport.TransportCase):
+ transport = 'sqlalchemy'
+ prefix = 'sqlalchemy'
+ event_loop_max = 10
+ connection_options = {'hostname': 'sqla+sqlite://'}