Call :meth:`open` with ``method`` set to ``TRACE``.
(self, *args: t.Any, **kw: t.Any)
| 1192 | return self.open(*args, **kw) |
| 1193 | |
| 1194 | def trace(self, *args: t.Any, **kw: t.Any) -> TestResponse: |
| 1195 | """Call :meth:`open` with ``method`` set to ``TRACE``.""" |
| 1196 | kw["method"] = "TRACE" |
| 1197 | return self.open(*args, **kw) |
| 1198 | |
| 1199 | def __repr__(self) -> str: |
| 1200 | return f"<{type(self).__name__} {self.application!r}>" |