()
| 664 | |
| 665 | #[test] |
| 666 | fn test_strip_no_closing() { |
| 667 | // No closing ``` — return trimmed original |
| 668 | let input = "```json\n{\"intent\": \"test\"}"; |
| 669 | let result = strip_markdown_code_blocks(input); |
| 670 | assert!(result.contains("intent")); |
| 671 | } |
| 672 | |
| 673 | // truncate_for_display |
| 674 |
nothing calls this directly
no test coverage detected