()
| 214 | |
| 215 | #[test] |
| 216 | fn test_extract_simple_json() { |
| 217 | let resp = r#"{"priority": "high"}"#; |
| 218 | let updates = extract_column_updates(resp).unwrap(); |
| 219 | assert_eq!(updates.get("priority").unwrap(), "high"); |
| 220 | } |
| 221 | |
| 222 | #[test] |
| 223 | fn test_extract_multiple_columns() { |
nothing calls this directly
no test coverage detected