()
| 188 | |
| 189 | #[test] |
| 190 | fn test_extract_json_nested_braces() { |
| 191 | let input = r#"Result: {"outer": {"inner": [1, 2, 3]}} end"#; |
| 192 | let result = extract_json_value(input).unwrap(); |
| 193 | assert_eq!(result["outer"]["inner"][1], 2); |
| 194 | } |
| 195 | |
| 196 | #[test] |
| 197 | fn test_extract_json_with_escaped_quotes() { |
nothing calls this directly
no test coverage detected