(self, path, **kwargs)
| 234 | return self._session.delete(url) |
| 235 | |
| 236 | def ws_connect(self, path, **kwargs): |
| 237 | while path.startswith('/'): |
| 238 | path = path[1:] |
| 239 | url = self._url + path |
| 240 | return self._session.ws_connect(url, **kwargs) |
| 241 | |
| 242 | |
| 243 | @pytest.yield_fixture |
no outgoing calls
no test coverage detected