()
| 311 | def test_add_template_global(app, app_ctx): |
| 312 | @app.template_global() |
| 313 | def get_stuff(): |
| 314 | return 42 |
| 315 | |
| 316 | assert "get_stuff" in app.jinja_env.globals.keys() |
| 317 | assert app.jinja_env.globals["get_stuff"] == get_stuff |
nothing calls this directly
no outgoing calls
no test coverage detected