Browse Source

Mention that people subscribe with **extra.

pull/334/head
Armin Ronacher 13 years ago
parent
commit
174f32250e
  1. 5
      docs/signals.rst

5
docs/signals.rst

@ -55,7 +55,7 @@ to the template::
@contextmanager
def captured_templates(app):
recorded = []
def record(sender, template, context):
def record(sender, template, context, **extra):
recorded.append((template, context))
template_rendered.connect(record, app)
try:
@ -73,6 +73,9 @@ This can now easily be paired with a test client::
assert template.name == 'index.html'
assert len(context['items']) == 10
Make sure to subscribe with an extra ``**extra`` argument so that your
calls don't fail if Flask introduces new arguments to the signals.
All the template rendering in the code issued by the application `app`
in the body of the `with` block will now be recorded in the `templates`
variable. Whenever a template is rendered, the template object as well as

Loading…
Cancel
Save