()
| 975 | |
| 976 | #[test] |
| 977 | fn test_convert_missing_deps() { |
| 978 | let err = RemoteError::missing_deps(vec!["ABC".to_string(), "DEF".to_string()]); |
| 979 | let cli_err = convert_remote_error(err, "http://example.com"); |
| 980 | |
| 981 | assert!(matches!(cli_err, CliError::MissingDependency { .. })); |
| 982 | } |
| 983 | |
| 984 | #[test] |
| 985 | fn test_convert_timeout() { |
nothing calls this directly
no test coverage detected