Home / Function/ test_index() — flask Function Reference

test_index() — flask Function Reference

Architecture documentation for the test_index() function in test_blog.py from the flask codebase.

Entity Profile

Dependency Diagram

graph TD
  13513907_c1cc_9c05_1f7c_39c8c031bbd6["test_index()"]
  149f981e_3440_10a6_431d_dff3407a335c["test_blog.py"]
  13513907_c1cc_9c05_1f7c_39c8c031bbd6 -->|defined in| 149f981e_3440_10a6_431d_dff3407a335c
  style 13513907_c1cc_9c05_1f7c_39c8c031bbd6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

examples/tutorial/tests/test_blog.py lines 6–16

def test_index(client, auth):
    response = client.get("/")
    assert b"Log In" in response.data
    assert b"Register" in response.data

    auth.login()
    response = client.get("/")
    assert b"test title" in response.data
    assert b"by test on 2018-01-01" in response.data
    assert b"test\nbody" in response.data
    assert b'href="/1/update"' in response.data

Subdomains

Frequently Asked Questions

What does test_index() do?
test_index() is a function in the flask codebase, defined in examples/tutorial/tests/test_blog.py.
Where is test_index() defined?
test_index() is defined in examples/tutorial/tests/test_blog.py at line 6.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free