11 lines
181 B
Python
11 lines
181 B
Python
from src.main import main
|
|
import unittest
|
|
|
|
class TestMain(unittest.TestCase):
|
|
def test_main(self):
|
|
self.assertEqual(True, True)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|