()
| 657 | |
| 658 | #[test] |
| 659 | fn test_strip_with_whitespace() { |
| 660 | let input = " ```json\n {\"intent\": \"test\"} \n``` "; |
| 661 | let result = strip_markdown_code_blocks(input); |
| 662 | assert!(result.contains("intent")); |
| 663 | } |
| 664 | |
| 665 | #[test] |
| 666 | fn test_strip_no_closing() { |
nothing calls this directly
no test coverage detected