()
| 324 | |
| 325 | #[tokio::test] |
| 326 | async fn test_proxy_error_into_response_internal() { |
| 327 | let err = ProxyError::Internal("fail".to_string()); |
| 328 | let resp = err.into_response(); |
| 329 | assert_eq!(resp.status(), StatusCode::INTERNAL_SERVER_ERROR); |
| 330 | } |
| 331 | |
| 332 | #[test] |
| 333 | fn test_proxy_error_display_method_not_allowed() { |
nothing calls this directly
no test coverage detected