]> git.netwichtig.de Git - user/henk/code/python/learn_python.git/commitdiff
move things to simple and correct place
authorHendrik Jäger <gitcommit@henk.geekmail.org>
Wed, 2 Aug 2023 13:09:48 +0000 (15:09 +0200)
committerHendrik Jäger <gitcommit@henk.geekmail.org>
Wed, 2 Aug 2023 13:09:48 +0000 (15:09 +0200)
tests/hello/__init__.py [deleted file]
tests/hello/test_hello.py [deleted file]
tests/test_hello/__init__.py [new file with mode: 0644]
tests/test_hello/test_hello.py [new file with mode: 0644]

diff --git a/tests/hello/__init__.py b/tests/hello/__init__.py
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/tests/hello/test_hello.py b/tests/hello/test_hello.py
deleted file mode 100644 (file)
index cd9cfa1..0000000
+++ /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 (file)
index 0000000..e69de29
diff --git a/tests/test_hello/test_hello.py b/tests/test_hello/test_hello.py
new file mode 100644 (file)
index 0000000..cd9cfa1
--- /dev/null
@@ -0,0 +1,5 @@
+import hello
+
+
+def test_greet():
+    assert hello.greet('world') == 'Hello world'