(self)
| 273 | return socket_adapter.socket_path |
| 274 | |
| 275 | def test_url_compatibility_unix(self): |
| 276 | c = APIClient( |
| 277 | base_url="unix://socket", |
| 278 | version=DEFAULT_DOCKER_API_VERSION) |
| 279 | |
| 280 | assert self._socket_path_for_client_session(c) == '/socket' |
| 281 | |
| 282 | def test_url_compatibility_unix_triple_slash(self): |
| 283 | c = APIClient( |
nothing calls this directly
no test coverage detected