()
| 264 | |
| 265 | #[test] |
| 266 | fn test_extract_null_value() { |
| 267 | let resp = r#"{"notes": null, "priority": "low"}"#; |
| 268 | let updates = extract_column_updates(resp).unwrap(); |
| 269 | assert!(updates.get("notes").unwrap().is_null()); |
| 270 | assert_eq!(updates.get("priority").unwrap(), "low"); |
| 271 | } |
| 272 | |
| 273 | #[test] |
| 274 | fn test_extract_numeric_value() { |
nothing calls this directly
no test coverage detected