(self, env)
| 83 | |
| 84 | class TestBug: |
| 85 | def test_keyword_folding(self, env): |
| 86 | env = Environment() |
| 87 | env.filters["testing"] = lambda value, some: value + some |
| 88 | assert ( |
| 89 | env.from_string("{{ 'test'|testing(some='stuff') }}").render() |
| 90 | == "teststuff" |
| 91 | ) |
| 92 | |
| 93 | def test_extends_output_bugs(self, env): |
| 94 | env = Environment( |
nothing calls this directly
no test coverage detected