5 lines
155 B
Python
5 lines
155 B
Python
def test_home_startpage(client):
|
|
response = client.get("/")
|
|
assert response.status_code == 200
|
|
assert response.data.startswith(b"<!DOCTYPE html>\n")
|