flask-tutorial/tests/test_factory.py
2025-08-12 10:43:47 +02:00

11 lines
243 B
Python

from flaskr import create_app
def test_config():
assert not create_app().testing
assert create_app({'TESTING': True}).testing
def test_hello(client):
response = client.get('/hello')
assert response.data == b'Hello, World!'