Added tests for start command

This commit is contained in:
2022-06-26 00:39:16 +02:00
parent 6de3bbdaf4
commit 32507afae9
8 changed files with 119 additions and 22 deletions

View File

@@ -0,0 +1 @@
# imports

View File

@@ -0,0 +1,12 @@
import threading
from unittests_shared.cli_commands import CLICommands
class StartTestThread(threading.Thread):
def __init__(self):
threading.Thread.__init__(self, daemon=True)
def run(self):
CLICommands.start()