aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/data/test_config.yaml1
-rw-r--r--tests/test_ctl.py18
2 files changed, 19 insertions, 0 deletions
diff --git a/tests/data/test_config.yaml b/tests/data/test_config.yaml
index 4a485ff..c85a935 100644
--- a/tests/data/test_config.yaml
+++ b/tests/data/test_config.yaml
@@ -1 +1,2 @@
backend: memory
+ctl_socket: tempfile
diff --git a/tests/test_ctl.py b/tests/test_ctl.py
new file mode 100644
index 0000000..404a430
--- /dev/null
+++ b/tests/test_ctl.py
@@ -0,0 +1,18 @@
+import os
+import tempfile
+
+from tornado.testing import AsyncTestCase
+
+from pyapd import ctl, config
+
+
+class TestCtlServer(AsyncTestCase):
+ def setUp(self):
+ super().setUp()
+ self.tempdir = tempfile.TemporaryDirectory()
+ conf = config.Config('tests/data/test_config.yaml')
+ conf.ctl_socket = os.path.join(self.tempdir.name, 'pyapd.sock')
+ self.ctl_server = ctl.CtlServer(conf)
+
+ def test_nothing(self):
+ pass