(self)
| 69 | assert blocks[0].kind == "blockquote" |
| 70 | |
| 71 | def test_code_fence(self): |
| 72 | blocks = split_blocks("```python\nprint(1)\n```\n") |
| 73 | assert len(blocks) == 1 |
| 74 | assert blocks[0].kind == "code" |
| 75 | |
| 76 | def test_code_fence_with_heading_inside_not_recognized(self): |
| 77 | # 围栏内的 # 不应被识别为 heading |
nothing calls this directly
no test coverage detected