summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/hello/__init__.py0
-rw-r--r--tests/hello/test_hello.py5
2 files changed, 5 insertions, 0 deletions
diff --git a/tests/hello/__init__.py b/tests/hello/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/tests/hello/__init__.py
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'