()
| 242 | |
| 243 | #[test] |
| 244 | fn test_extract_empty_object() { |
| 245 | let resp = "{}"; |
| 246 | let updates = extract_column_updates(resp).unwrap(); |
| 247 | assert!(updates.is_empty()); |
| 248 | } |
| 249 | |
| 250 | #[test] |
| 251 | fn test_extract_nested_json() { |
nothing calls this directly
no test coverage detected