Home / Function/ test_streaming_with_context_as_decorator() — flask Function Reference

test_streaming_with_context_as_decorator() — flask Function Reference

Architecture documentation for the test_streaming_with_context_as_decorator() function in test_helpers.py from the flask codebase.

Entity Profile

Dependency Diagram

graph TD
  cd82b66d_9bf2_aa4d_a1f9_a0c7b030b16c["test_streaming_with_context_as_decorator()"]
  76c30621_3053_d7e5_0aa1_daf0facdcd3e["TestStreaming"]
  cd82b66d_9bf2_aa4d_a1f9_a0c7b030b16c -->|defined in| 76c30621_3053_d7e5_0aa1_daf0facdcd3e
  729b2b4d_9ff1_7f6f_84a8_82111621cd27["get()"]
  cd82b66d_9bf2_aa4d_a1f9_a0c7b030b16c -->|calls| 729b2b4d_9ff1_7f6f_84a8_82111621cd27
  style cd82b66d_9bf2_aa4d_a1f9_a0c7b030b16c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

tests/test_helpers.py lines 250–262

    def test_streaming_with_context_as_decorator(self, app, client):
        @app.route("/")
        def index():
            @flask.stream_with_context
            def generate(hello):
                yield hello
                yield flask.request.args["name"]
                yield "!"

            return flask.Response(generate("Hello "))

        rv = client.get("/?name=World")
        assert rv.data == b"Hello World!"

Subdomains

Calls

Frequently Asked Questions

What does test_streaming_with_context_as_decorator() do?
test_streaming_with_context_as_decorator() is a function in the flask codebase, defined in tests/test_helpers.py.
Where is test_streaming_with_context_as_decorator() defined?
test_streaming_with_context_as_decorator() is defined in tests/test_helpers.py at line 250.
What does test_streaming_with_context_as_decorator() call?
test_streaming_with_context_as_decorator() calls 1 function(s): get.

Analyze Your Own Codebase

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

Try Supermodel Free