diff --git a/tests/utils/test_get_remote_processes.py b/tests/utils/test_get_remote_processes.py new file mode 100644 index 0000000..605e52f --- /dev/null +++ b/tests/utils/test_get_remote_processes.py @@ -0,0 +1,10 @@ +import unittest + +import asyncssh + + +class TestGetRemoteProcesses(unittest.IsolatedAsyncioTestCase): + + async def test_get_remote_processes(self): + async with asyncssh.connect('localhost') as conn: + pass