(capsys)
| 19 | |
| 20 | |
| 21 | def test_inline_before(capsys): |
| 22 | def _plugin(_md: MarkdownIt) -> None: |
| 23 | _md.inline.ruler.before("text", "new_rule", inline_rule) |
| 24 | |
| 25 | MarkdownIt().use(_plugin).parse("a") |
| 26 | assert "plugin called" in capsys.readouterr().out |
| 27 | |
| 28 | |
| 29 | def test_inline_at(capsys): |
nothing calls this directly
no test coverage detected
searching dependent graphs…