()
| 160 | |
| 161 | #[test] |
| 162 | fn test_extract_json_with_whitespace() { |
| 163 | let input = " \n {\"x\": 1} \n "; |
| 164 | let result = extract_json_value(input).unwrap(); |
| 165 | assert_eq!(result["x"], 1); |
| 166 | } |
| 167 | |
| 168 | #[test] |
| 169 | fn test_extract_json_from_code_fence() { |
nothing calls this directly
no test coverage detected