diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_hello.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_hello.py b/tests/test_hello.py new file mode 100644 index 0000000..2af3f3b --- /dev/null +++ b/tests/test_hello.py @@ -0,0 +1,8 @@ +import unittest + +class TestHello(unittest.TestCase): + def test_hello(self): + self.assertEqual("hello", "hello") + +if __name__ == "__main__": + unittest.main() |
