From afa3e9685326fc6f421120b5b23db5262a10fccd Mon Sep 17 00:00:00 2001 From: Sasa Kocic Date: Thu, 9 Dec 2021 00:45:46 +0100 Subject: [PATCH] trigger build --- tests/test_hello.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/test_hello.py diff --git a/tests/test_hello.py b/tests/test_hello.py new file mode 100644 index 0000000..9e08af3 --- /dev/null +++ b/tests/test_hello.py @@ -0,0 +1,8 @@ +# test_hello.py +from app import app + +def test_hello(): + response = app.test_client().get('/') + + assert response.status_code == 200 + assert response.data == b'Hello, World!'