summaryrefslogtreecommitdiffstats
path: root/tests/test_deflist.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/test_deflist.py37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/test_deflist.py b/tests/test_deflist.py
new file mode 100644
index 0000000..d924e93
--- /dev/null
+++ b/tests/test_deflist.py
@@ -0,0 +1,37 @@
+from pathlib import Path
+from textwrap import dedent
+
+from markdown_it import MarkdownIt
+from markdown_it.utils import read_fixture_file
+import pytest
+
+from mdit_py_plugins.deflist import deflist_plugin
+
+FIXTURE_PATH = Path(__file__).parent.joinpath("fixtures", "deflist.md")
+
+
+def test_plugin_parse(data_regression):
+ md = MarkdownIt().use(deflist_plugin)
+ tokens = md.parse(
+ dedent(
+ """\
+ Term 1
+
+ : Definition 1
+
+ Term 2
+ ~ Definition 2a
+ ~ Definition 2b
+ """
+ )
+ )
+ data_regression.check([t.as_dict() for t in tokens])
+
+
+@pytest.mark.parametrize("line,title,input,expected", read_fixture_file(FIXTURE_PATH))
+def test_all(line, title, input, expected):
+ md = MarkdownIt("commonmark").use(deflist_plugin)
+ md.options["xhtmlOut"] = False
+ text = md.render(input)
+ print(text)
+ assert text.rstrip() == expected.rstrip()