mirror of
https://github.com/fastogt/pyfastogt
synced 2025-02-12 12:41:53 +00:00
11 lines
158 B
Python
Executable file
11 lines
158 B
Python
Executable file
#!/usr/bin/env python3
|
|
import unittest
|
|
|
|
|
|
class UnitTest(unittest.TestCase):
|
|
def test(self):
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|