9 lines
140 B
Python
9 lines
140 B
Python
|
import unittest
|
||
|
|
||
|
class Tests(unittest.TestCase):
|
||
|
def test_something(self):
|
||
|
pass
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|