()
| 292 | |
| 293 | #[test] |
| 294 | fn parse_wrong_columns_errors() { |
| 295 | let columns = vec!["id".to_string(), "count".to_string()]; |
| 296 | let err = parse_graph_stats_response(&columns, &[]).unwrap_err(); |
| 297 | assert!(err.to_string().contains("unexpected columns")); |
| 298 | } |
| 299 | |
| 300 | #[test] |
| 301 | fn parse_no_columns_no_rows_returns_empty_vec() { |
nothing calls this directly
no test coverage detected