Onionr/tests/test_template.py

12 lines
205 B
Python
Raw Normal View History

2019-12-27 07:53:18 +00:00
#!/usr/bin/env python3
import unittest, sys
sys.path.append(".")
sys.path.append("src/")
class TestTemplate(unittest.TestCase):
def test_my_test(self):
self.assertTrue(True)
unittest.main()