aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJauhien Piatlicki (jauhien) <piatlicki@gmail.com>2013-07-09 01:53:38 +0200
committerJauhien Piatlicki (jauhien) <piatlicki@gmail.com>2013-07-09 01:53:38 +0200
commit2b74357f5c51d0e577a56a14bd5eb58dcd11ca2d (patch)
treec238f8a9e3683c4c982c99570ba68b2a467eea61 /tests
parenttests/test_package_db: sort list (diff)
downloadg-sorcery-2b74357f5c51d0e577a56a14bd5eb58dcd11ca2d.tar.gz
g-sorcery-2b74357f5c51d0e577a56a14bd5eb58dcd11ca2d.tar.bz2
g-sorcery-2b74357f5c51d0e577a56a14bd5eb58dcd11ca2d.zip
g_elpa/backend, g_sorcery/dispatcher: initial commit
Diffstat (limited to 'tests')
-rw-r--r--tests/test_dispatcher.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/test_dispatcher.py b/tests/test_dispatcher.py
new file mode 100644
index 0000000..517158d
--- /dev/null
+++ b/tests/test_dispatcher.py
@@ -0,0 +1,29 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+"""
+ test_dispatcher.py
+ ~~~~~~~~~~~~~~~~~~
+
+ backend dispatcher test suite
+
+ :copyright: (c) 2013 by Jauhien Piatlicki
+ :license: GPL-2, see LICENSE for more details.
+"""
+
+import unittest
+
+from g_sorcery import dispatcher
+
+from tests.base import BaseTest
+
+class TestDispatcher(BaseTest):
+
+ def test_dispatcher(self):
+ pass
+
+
+def suite():
+ suite = unittest.TestSuite()
+ suite.addTest(TestDispatcher('test_dispatcher'))
+ return suite