(self)
| 43 | assert "<em>italic</em>" in render_inline_html(children) |
| 44 | |
| 45 | def test_strong(self): |
| 46 | children = _parse_inline("**bold** text") |
| 47 | assert "<strong>bold</strong>" in render_inline_html(children) |
| 48 | |
| 49 | def test_code_inline(self): |
| 50 | children = _parse_inline("`some code`") |
nothing calls this directly
no test coverage detected