From 1913d89e788996d973f7da3b8290729a0b7b6d0e Mon Sep 17 00:00:00 2001 From: Hendrik Jäger Date: Wed, 2 Aug 2023 15:09:48 +0200 Subject: move things to simple and correct place --- tests/hello/__init__.py | 0 tests/hello/test_hello.py | 5 ----- tests/test_hello/__init__.py | 0 tests/test_hello/test_hello.py | 5 +++++ 4 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 tests/hello/__init__.py delete mode 100644 tests/hello/test_hello.py create mode 100644 tests/test_hello/__init__.py create mode 100644 tests/test_hello/test_hello.py diff --git a/tests/hello/__init__.py b/tests/hello/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/hello/test_hello.py b/tests/hello/test_hello.py deleted file mode 100644 index cd9cfa1..0000000 --- a/tests/hello/test_hello.py +++ /dev/null @@ -1,5 +0,0 @@ -import hello - - -def test_greet(): - assert hello.greet('world') == 'Hello world' diff --git a/tests/test_hello/__init__.py b/tests/test_hello/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_hello/test_hello.py b/tests/test_hello/test_hello.py new file mode 100644 index 0000000..cd9cfa1 --- /dev/null +++ b/tests/test_hello/test_hello.py @@ -0,0 +1,5 @@ +import hello + + +def test_greet(): + assert hello.greet('world') == 'Hello world' -- cgit v1.2.3