(self)
| 86 | assert blocks[0].kind == "table" |
| 87 | |
| 88 | def test_figure(self): |
| 89 | blocks = split_blocks("\n") |
| 90 | assert len(blocks) == 1 |
| 91 | assert blocks[0].kind == "figure" |
| 92 | |
| 93 | def test_hr(self): |
| 94 | blocks = split_blocks("---\n") |
nothing calls this directly
no test coverage detected