()
| 433 | |
| 434 | #[test] |
| 435 | fn parse_error_body_non_json() { |
| 436 | let client = StorageClient::new("https://example.com", "acme", "tok").unwrap(); |
| 437 | let err = client.parse_error_body(502, "Bad Gateway"); |
| 438 | assert!(err.to_string().contains("502")); |
| 439 | } |
| 440 | |
| 441 | #[test] |
| 442 | fn preview_returns_short_input_verbatim() { |
nothing calls this directly
no test coverage detected