mirror of https://git.sr.ht/~michalr/menu
13 lines
188 B
Python
13 lines
188 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import unittest
|
||
|
|
||
|
|
||
|
class TestSanity(unittest.TestCase):
|
||
|
def test_sanity(self):
|
||
|
self.assertEqual(1+1, 2)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|