summaryrefslogtreecommitdiffstats
path: root/tests/test_wordcount.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/test_wordcount.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/test_wordcount.py b/tests/test_wordcount.py
new file mode 100644
index 0000000..d7629d9
--- /dev/null
+++ b/tests/test_wordcount.py
@@ -0,0 +1,23 @@
+import json
+from pathlib import Path
+
+from markdown_it import MarkdownIt
+from markdown_it.utils import read_fixture_file
+import pytest
+
+from mdit_py_plugins.wordcount import wordcount_plugin
+
+FIXTURE_PATH = Path(__file__).parent.joinpath("fixtures", "wordcount.md")
+
+
+@pytest.mark.parametrize("line,title,input,expected", read_fixture_file(FIXTURE_PATH))
+def test_all(line, title, input, expected):
+ md = MarkdownIt("commonmark").use(wordcount_plugin, store_text="(text)" in title)
+ env = {}
+ md.render(input, env)
+ data = json.dumps(env["wordcount"], indent=2, sort_keys=True)
+ try:
+ assert data.strip() == expected.strip()
+ except AssertionError:
+ print(data)
+ raise