added more unit tests

This commit is contained in:
2023-12-12 22:37:15 +01:00
parent 4d8c0c1dda
commit ffdf3f3779
2 changed files with 17 additions and 0 deletions

6
tests/test_config.py Normal file
View File

@@ -0,0 +1,6 @@
import unittest
class TestConfig(unittest.TestCase):
def test_config(self):
pass

11
tests/test_process.py Normal file
View File

@@ -0,0 +1,11 @@
import unittest
from unittest.mock import Mock
from src.process import start_process
class TestProcess(unittest.TestCase):
def test_process(self):
start_process(logger=Mock())