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