1
0
Fork 0
mirror of https://github.com/fastogt/pyfastogt synced 2025-02-12 15:51:54 +00:00
pyfastogt/tests/unit_tests.py

12 lines
158 B
Python
Raw Normal View History

2021-03-11 06:57:19 +00:00
#!/usr/bin/env python3
import unittest
class UnitTest(unittest.TestCase):
def test(self):
pass
if __name__ == '__main__':
unittest.main()