()
| 251 | |
| 252 | |
| 253 | def test_renderInline(): |
| 254 | md = MarkdownIt("zero") |
| 255 | tokens = md.renderInline("abc\n\n*xyz*") |
| 256 | assert tokens == "abc\n\n*xyz*" |
| 257 | |
| 258 | |
| 259 | def test_emptyStr(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…