From ee6c2b6a954ab534e59375d9704047b098e3a555 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Hendrik=20J=C3=A4ger?= Date: Tue, 1 Aug 2023 21:47:54 +0200 Subject: [PATCH] add first tests --- tests/hello/__init__.py | 0 tests/hello/test_hello.py | 5 +++++ 2 files changed, 5 insertions(+) create mode 100644 tests/hello/__init__.py create mode 100644 tests/hello/test_hello.py diff --git a/tests/hello/__init__.py b/tests/hello/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/hello/test_hello.py b/tests/hello/test_hello.py new file mode 100644 index 0000000..cd9cfa1 --- /dev/null +++ b/tests/hello/test_hello.py @@ -0,0 +1,5 @@ +import hello + + +def test_greet(): + assert hello.greet('world') == 'Hello world' -- 2.39.2