diff options
Diffstat (limited to '')
-rw-r--r-- | tests/test_attrs.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/test_attrs.py b/tests/test_attrs.py new file mode 100644 index 0000000..e4e9f0f --- /dev/null +++ b/tests/test_attrs.py @@ -0,0 +1,20 @@ +from pathlib import Path + +from markdown_it import MarkdownIt +from markdown_it.utils import read_fixture_file +import pytest + +from mdit_py_plugins.attrs import attrs_plugin + +FIXTURE_PATH = Path(__file__).parent.joinpath("fixtures") + + +@pytest.mark.parametrize( + "line,title,input,expected", read_fixture_file(FIXTURE_PATH / "attrs.md") +) +def test_attrs(line, title, input, expected): + md = MarkdownIt("commonmark").use(attrs_plugin, spans=True) + md.options["xhtmlOut"] = False + text = md.render(input) + print(text) + assert text.rstrip() == expected.rstrip() |