From 867e2a6c1d99f503ef388c2417bfffaa83de7754 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Sun, 5 Apr 2026 10:49:40 +0200 Subject: Add test framework --- tests/test_hello.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/test_hello.py (limited to 'tests') 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() -- cgit 1.4.1