test1/test_app.py
Vladislav a829588b51
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 3
2025-05-21 22:10:18 +03:00

11 lines
221 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