3 lines
125 B
Python
3 lines
125 B
Python
def test_request_home_startpage(client):
|
|
response = client.get("/")
|
|
assert response.data.startswith(b"<!DOCTYPE html>\n") |