added more unit tests
This commit is contained in:
6
tests/test_config.py
Normal file
6
tests/test_config.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
import unittest
|
||||||
|
|
||||||
|
|
||||||
|
class TestConfig(unittest.TestCase):
|
||||||
|
def test_config(self):
|
||||||
|
pass
|
||||||
11
tests/test_process.py
Normal file
11
tests/test_process.py
Normal 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())
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user