From 25093ce833c57559d71e151ee68fc1b1f440a104 Mon Sep 17 00:00:00 2001 From: Alexander Winkler Date: Thu, 14 May 2026 09:55:02 +0200 Subject: [PATCH] add basic test --- test/test_functional.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 test/test_functional.py diff --git a/test/test_functional.py b/test/test_functional.py new file mode 100644 index 0000000..0cfb471 --- /dev/null +++ b/test/test_functional.py @@ -0,0 +1,4 @@ +from chore_manager.main import main_tui + +def test_tui() -> None: + assert main_tui() is None