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