test1/test_app.py
Vladislav f3e38709d3
Some checks failed
CI Pipeline / lint (push) Failing after 7s
CI Pipeline / test (push) Successful in 7s
CI Pipeline / build (push) Has been skipped
test pipeline 2
2025-05-21 22:07:43 +03:00

10 lines
228 B
Python

from app import app
import pytest
def test_hello():
with app.test_client() as client:
response = client.get('/')
assert response.data == b'Hello, DevOps!'
assert response.status_code == 200