()
| 669 | |
| 670 | #[test] |
| 671 | fn test_convert_missing_deps() { |
| 672 | let err = RemoteError::missing_deps(vec!["ABC".to_string(), "DEF".to_string()]); |
| 673 | let cli_err = convert_remote_error(err, "http://example.com"); |
| 674 | |
| 675 | assert!(matches!(cli_err, CliError::MissingDependency { .. })); |
| 676 | } |
| 677 | |
| 678 | #[test] |
| 679 | fn test_convert_timeout() { |
nothing calls this directly
no test coverage detected