13 lines
176 B
Python
Executable file
13 lines
176 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import program
|
|
import unittest
|
|
|
|
|
|
class TestThing(unittest.TestCase):
|
|
def setUp(self):
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|