(self)
| 294 | assert self._socket_path_for_client_session(c) == '/socket' |
| 295 | |
| 296 | def test_url_compatibility_http(self): |
| 297 | c = APIClient( |
| 298 | base_url="http://hostname:1234", |
| 299 | version=DEFAULT_DOCKER_API_VERSION) |
| 300 | |
| 301 | assert c.base_url == "http://hostname:1234" |
| 302 | |
| 303 | def test_url_compatibility_tcp(self): |
| 304 | c = APIClient( |