summaryrefslogtreecommitdiffstats
path: root/tests/test_tasklists.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-29 04:29:52 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-29 04:29:52 +0000
commitfcb2f10732db61d216e2105c8154486f66b3e3ff (patch)
treeefda929db4b1543eecc583e3b7d9c0bad4cd86a6 /tests/test_tasklists.py
parentInitial commit. (diff)
downloadmdit-py-plugins-upstream.tar.xz
mdit-py-plugins-upstream.zip
Adding upstream version 0.3.3.upstream/0.3.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/test_tasklists.py')
-rw-r--r--tests/test_tasklists.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/test_tasklists.py b/tests/test_tasklists.py
new file mode 100644
index 0000000..427c336
--- /dev/null
+++ b/tests/test_tasklists.py
@@ -0,0 +1,34 @@
+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.tasklists import tasklists_plugin
+
+FIXTURE_PATH = Path(__file__).parent.joinpath("fixtures", "tasklists.md")
+
+
+def test_plugin_parse(data_regression):
+ md = MarkdownIt().use(tasklists_plugin)
+ tokens = md.parse(
+ dedent(
+ """\
+ * [ ] Task incomplete
+ * [x] Task complete
+ * [ ] Indented task incomplete
+ * [x] Indented task complete
+ """
+ )
+ )
+ 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(tasklists_plugin)
+ md.options["xhtmlOut"] = False
+ text = md.render(input)
+ print(text)
+ assert text.rstrip() == expected.rstrip()