diff options
Diffstat (limited to 'tests/test_anchors.py')
-rw-r--r-- | tests/test_anchors.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/test_anchors.py b/tests/test_anchors.py new file mode 100644 index 0000000..0515b92 --- /dev/null +++ b/tests/test_anchors.py @@ -0,0 +1,23 @@ +from pathlib import Path + +from markdown_it import MarkdownIt +from markdown_it.utils import read_fixture_file +import pytest + +from mdit_py_plugins.anchors import anchors_plugin + +FIXTURE_PATH = Path(__file__).parent + + +@pytest.mark.parametrize( + "line,title,input,expected", + read_fixture_file(FIXTURE_PATH.joinpath("fixtures", "anchors.md")), +) +def test_fixtures(line, title, input, expected): + md = MarkdownIt("commonmark").use( + anchors_plugin, + permalink="(permalink" in title, + permalinkBefore="before)" in title, + ) + text = md.render(input) + assert text.rstrip() == expected.rstrip() |