()
| 406 | |
| 407 | #[test] |
| 408 | fn parse_error_body_non_json() { |
| 409 | let client = StorageClient::new("https://example.com", "acme", "tok").unwrap(); |
| 410 | let err = client.parse_error_body(502, "Bad Gateway"); |
| 411 | assert!(err.to_string().contains("502")); |
| 412 | } |
| 413 | } |
nothing calls this directly
no test coverage detected