(self, exc_type, exc_value, traceback)
| 165 | return self |
| 166 | |
| 167 | def __exit__(self, exc_type, exc_value, traceback): |
| 168 | template_rendered.disconnect(self.on_template_render) |
| 169 | if exc_type is not None: |
| 170 | return |
| 171 | self.test() |
| 172 | |
| 173 | |
| 174 | class _AssertTemplateNotUsedContext(_AssertTemplateUsedContext): |
nothing calls this directly
no test coverage detected