def test_home_startpage(client): """Test view startpage() from home.py.""" response = client.get("/") # assert good status code assert response.status_code == 200 # assert that the returned data is good HTML assert response.data.startswith(b"\n") # more test cases: POST,