Call :meth:`open` with ``method`` set to ``GET``.
(self, *args: t.Any, **kw: t.Any)
| 1157 | return response |
| 1158 | |
| 1159 | def get(self, *args: t.Any, **kw: t.Any) -> TestResponse: |
| 1160 | """Call :meth:`open` with ``method`` set to ``GET``.""" |
| 1161 | kw["method"] = "GET" |
| 1162 | return self.open(*args, **kw) |
| 1163 | |
| 1164 | def post(self, *args: t.Any, **kw: t.Any) -> TestResponse: |
| 1165 | """Call :meth:`open` with ``method`` set to ``POST``.""" |
no test coverage detected