about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorPjotr Prins2026-04-05 10:49:40 +0200
committerPjotr Prins2026-04-05 10:49:40 +0200
commit867e2a6c1d99f503ef388c2417bfffaa83de7754 (patch)
treee16a65e1c19574fec88efa68ce5bd8f6296b0306 /tests
parent210a4895f41094b594b8e34a48d3173b07e12184 (diff)
downloadgenecup-867e2a6c1d99f503ef388c2417bfffaa83de7754.tar.gz
Add test framework
Diffstat (limited to 'tests')
-rw-r--r--tests/test_hello.py8
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()