You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# test_hello.py
|
|
from app import app
|
|
|
|
def test_hello():
|
|
response = app.test_client().get('/')
|
|
|
|
assert response.status_code == 200
|
|
assert response.data == b'Hello, World!'
|