(self)
| 91 | assert blocks[0].kind == "figure" |
| 92 | |
| 93 | def test_hr(self): |
| 94 | blocks = split_blocks("---\n") |
| 95 | assert len(blocks) == 1 |
| 96 | assert blocks[0].kind == "hr" |
| 97 | |
| 98 | def test_mixed(self): |
| 99 | text = "# Title\n\nIntro paragraph.\n\n## Section\n\n- item 1\n- item 2\n" |
nothing calls this directly
no test coverage detected