(self)
| 59 | assert blocks[0].kind == "paragraph" |
| 60 | |
| 61 | def test_list(self): |
| 62 | blocks = split_blocks("- one\n- two\n") |
| 63 | assert len(blocks) == 1 |
| 64 | assert blocks[0].kind == "list" |
| 65 | |
| 66 | def test_blockquote(self): |
| 67 | blocks = split_blocks("> quoted\n> more\n") |
nothing calls this directly
no test coverage detected