Home / Function/ test_add_template_filter_with_name_and_template() — flask Function Reference

test_add_template_filter_with_name_and_template() — flask Function Reference

Architecture documentation for the test_add_template_filter_with_name_and_template() function in test_templating.py from the flask codebase.

Entity Profile

Dependency Diagram

graph TD
  8820c136_6c51_628f_af3d_beb0070ee403["test_add_template_filter_with_name_and_template()"]
  b3595fee_7041_96b0_f59f_4080381c7deb["test_templating.py"]
  8820c136_6c51_628f_af3d_beb0070ee403 -->|defined in| b3595fee_7041_96b0_f59f_4080381c7deb
  style 8820c136_6c51_628f_af3d_beb0070ee403 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

tests/test_templating.py lines 227–238

def test_add_template_filter_with_name_and_template(app, client):
    def my_reverse(s):
        return s[::-1]

    app.add_template_filter(my_reverse, "super_reverse")

    @app.route("/")
    def index():
        return flask.render_template("template_filter.html", value="abcd")

    rv = client.get("/")
    assert rv.data == b"dcba"

Subdomains

Frequently Asked Questions

What does test_add_template_filter_with_name_and_template() do?
test_add_template_filter_with_name_and_template() is a function in the flask codebase, defined in tests/test_templating.py.
Where is test_add_template_filter_with_name_and_template() defined?
test_add_template_filter_with_name_and_template() is defined in tests/test_templating.py at line 227.

Analyze Your Own Codebase

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

Try Supermodel Free