()
| 829 | |
| 830 | #[test] |
| 831 | fn test_convert_auth_failed() { |
| 832 | let err = RemoteError::auth_failed("http://example.com", "invalid token"); |
| 833 | let cli_err = convert_remote_error(err, "http://example.com"); |
| 834 | |
| 835 | assert!(matches!(cli_err, CliError::AuthenticationFailed { .. })); |
| 836 | } |
| 837 | |
| 838 | #[test] |
| 839 | fn test_convert_repo_not_found() { |
nothing calls this directly
no test coverage detected