(driver: Option<&str>)
| 199 | } |
| 200 | |
| 201 | fn required_engine_from_driver(driver: Option<&str>) -> Option<String> { |
| 202 | match normalized_env(driver).as_deref() { |
| 203 | Some("docker") => Some("docker".to_string()), |
| 204 | Some("podman") => Some("podman".to_string()), |
| 205 | _ => None, |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | trait ContainerEngineProbe { |
| 210 | fn command_exists(&self, command: &str) -> bool; |
no test coverage detected