(app, client, path, template_name)
| 12 | ), |
| 13 | ) |
| 14 | def test_index(app, client, path, template_name): |
| 15 | def check(sender, template, context): |
| 16 | assert template.name == template_name |
| 17 | |
| 18 | with template_rendered.connected_to(check, app): |
| 19 | client.get(path) |
| 20 | |
| 21 | |
| 22 | @pytest.mark.parametrize( |