()
| 880 | |
| 881 | #[test] |
| 882 | fn test_convert_missing_deps() { |
| 883 | let err = RemoteError::missing_deps(vec!["ABC".to_string(), "DEF".to_string()]); |
| 884 | let cli_err = convert_remote_error(err, "http://example.com"); |
| 885 | |
| 886 | assert!(matches!(cli_err, CliError::MissingDependency { .. })); |
| 887 | } |
| 888 | |
| 889 | #[test] |
| 890 | fn test_convert_timeout() { |
nothing calls this directly
no test coverage detected