aboutsummaryrefslogtreecommitdiff
path: root/tests/integration/test_smoke.py
blob: 1288da0ecc8d38d72918aa468ebe7edd56817f97 (plain)
1
2
3
4
def test_home(testapp):
    res = testapp.get("/")
    assert res.status_code == 200
    assert b'<h1>Home</h1>' in res.body