12 lines
251 B
Python
12 lines
251 B
Python
from app import app
|
|
|
|
def test_home_status():
|
|
client = app.test_client()
|
|
r = client.get("/")
|
|
assert r.status_code == 200
|
|
|
|
def test_home_text():
|
|
client = app.test_client()
|
|
r = client.get("/")
|
|
assert b"Flask CI/CD demo" in r.data
|