(self, path, **kwargs)
| 216 | self._session.close() |
| 217 | |
| 218 | def get(self, path, **kwargs): |
| 219 | while path.startswith('/'): |
| 220 | path = path[1:] |
| 221 | url = self._url + path |
| 222 | return self._session.get(url, **kwargs) |
| 223 | |
| 224 | def post(self, path, **kwargs): |
| 225 | while path.startswith('/'): |
no outgoing calls
no test coverage detected