()
| 618 | |
| 619 | #[test] |
| 620 | fn test_convert_auth_failed() { |
| 621 | let err = RemoteError::auth_failed("http://example.com", "invalid token"); |
| 622 | let cli_err = convert_remote_error(err, "http://example.com"); |
| 623 | |
| 624 | assert!(matches!(cli_err, CliError::AuthenticationFailed { .. })); |
| 625 | } |
| 626 | |
| 627 | #[test] |
| 628 | fn test_convert_repo_not_found() { |
nothing calls this directly
no test coverage detected