(self)
| 64 | assert blocks[0].kind == "list" |
| 65 | |
| 66 | def test_blockquote(self): |
| 67 | blocks = split_blocks("> quoted\n> more\n") |
| 68 | assert len(blocks) == 1 |
| 69 | assert blocks[0].kind == "blockquote" |
| 70 | |
| 71 | def test_code_fence(self): |
| 72 | blocks = split_blocks("```python\nprint(1)\n```\n") |
nothing calls this directly
no test coverage detected