diff --git a/test_app.py b/test_app.py index 2597091..c39a090 100644 --- a/test_app.py +++ b/test_app.py @@ -1,10 +1,8 @@ -from flask import Flask +from app import app -app = Flask(__name__) - -@app.route('/') -def hello_world(): - return 'Hello, Worlddddddddddd!!!' - -if __name__ == '__main__': - app.run(debug=True) +def test_homepage(): + + with app.test_client() as client: + response = client.get('/') + assert response.status_code == 200 + assert b"Hello, Worlddddddddddd!!!" in response.data