()
| 200 | } |
| 201 | |
| 202 | fn docker_socket_available() -> bool { |
| 203 | docker_socket_candidates() |
| 204 | .iter() |
| 205 | .any(|path| is_unix_socket(path)) |
| 206 | } |
| 207 | |
| 208 | fn docker_socket_candidates() -> Vec<PathBuf> { |
| 209 | let mut candidates = Vec::new(); |
no test coverage detected