Skip to content

Instantly share code, notes, and snippets.

@JayH5
Last active November 23, 2017 09:07
Show Gist options
  • Save JayH5/16d16494302e5c440273e6180f5938eb to your computer and use it in GitHub Desktop.
Save JayH5/16d16494302e5c440273e6180f5938eb to your computer and use it in GitHub Desktop.
Django admin page test (failing)
def test_admin_page(nginx_container):
client = nginx_container.http_client()
response = client.get("/admin")
assert response.status_code == 200
assert "text/html" in response.headers["content-type"]
assert "<title>Log in | Django site admin</title>" in response.text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment