(value)
| 217 | def test_template_test(app): |
| 218 | @app.template_test() |
| 219 | def boolean(value): |
| 220 | return isinstance(value, bool) |
| 221 | |
| 222 | assert "boolean" in app.jinja_env.tests.keys() |
| 223 | assert app.jinja_env.tests["boolean"] == boolean |
nothing calls this directly
no outgoing calls
no test coverage detected