()
| 272 | |
| 273 | #[test] |
| 274 | fn test_extract_numeric_value() { |
| 275 | let resp = r#"{"score": 42, "label": "good"}"#; |
| 276 | let updates = extract_column_updates(resp).unwrap(); |
| 277 | assert_eq!(updates.get("score").unwrap(), 42); |
| 278 | } |
| 279 | |
| 280 | #[test] |
| 281 | fn test_extract_malformed_json() { |
nothing calls this directly
no test coverage detected