()
| 924 | |
| 925 | #[test] |
| 926 | fn test_convert_auth_failed() { |
| 927 | let err = RemoteError::auth_failed("http://example.com", "invalid token"); |
| 928 | let cli_err = convert_remote_error(err, "http://example.com"); |
| 929 | |
| 930 | assert!(matches!(cli_err, CliError::AuthenticationFailed { .. })); |
| 931 | } |
| 932 | |
| 933 | #[test] |
| 934 | fn test_convert_repo_not_found() { |
nothing calls this directly
no test coverage detected