نسخ من Omar-268/flask_app
9 أسطر
230 B
Python
9 أسطر
230 B
Python
from app import app
|
|
|
|
def test_homepage():
|
|
|
|
with app.test_client() as client:
|
|
response = client.get('/')
|
|
assert response.status_code == 200
|
|
assert b"Hello, Worlddddddddddd!!!" in response.data
|