()
| 9 | |
| 10 | |
| 11 | def test_tree_to_tokens_conversion(): |
| 12 | tokens = MarkdownIt().parse(EXAMPLE_MARKDOWN) |
| 13 | tokens_after_roundtrip = SyntaxTreeNode(tokens).to_tokens() |
| 14 | assert tokens == tokens_after_roundtrip |
| 15 | |
| 16 | |
| 17 | def test_property_passthrough(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…