Call :meth:`open` with ``method`` set to ``OPTIONS``.
(self, *args: t.Any, **kw: t.Any)
| 1182 | return self.open(*args, **kw) |
| 1183 | |
| 1184 | def options(self, *args: t.Any, **kw: t.Any) -> TestResponse: |
| 1185 | """Call :meth:`open` with ``method`` set to ``OPTIONS``.""" |
| 1186 | kw["method"] = "OPTIONS" |
| 1187 | return self.open(*args, **kw) |
| 1188 | |
| 1189 | def head(self, *args: t.Any, **kw: t.Any) -> TestResponse: |
| 1190 | """Call :meth:`open` with ``method`` set to ``HEAD``.""" |