test1/test_app.py

10 lines
228 B
Python
Raw Normal View History

2025-05-21 21:15:44 +03:00
from app import app
import pytest
def test_hello():
with app.test_client() as client:
response = client.get('/')
assert response.data == b'Hello, DevOps!'
2025-05-21 22:07:43 +03:00
assert response.status_code == 200