diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:29:52 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:29:52 +0000 |
commit | fcb2f10732db61d216e2105c8154486f66b3e3ff (patch) | |
tree | efda929db4b1543eecc583e3b7d9c0bad4cd86a6 /tests/test_amsmath.py | |
parent | Initial commit. (diff) | |
download | mdit-py-plugins-fcb2f10732db61d216e2105c8154486f66b3e3ff.tar.xz mdit-py-plugins-fcb2f10732db61d216e2105c8154486f66b3e3ff.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_amsmath.py')
-rw-r--r-- | tests/test_amsmath.py | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/test_amsmath.py b/tests/test_amsmath.py new file mode 100644 index 0000000..55b4987 --- /dev/null +++ b/tests/test_amsmath.py @@ -0,0 +1,39 @@ +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.amsmath import amsmath_plugin + +FIXTURE_PATH = Path(__file__).parent + + +def test_plugin_parse(data_regression): + md = MarkdownIt().use(amsmath_plugin) + tokens = md.parse( + dedent( + """\ + a + \\begin{equation} + b=1 + c=2 + \\end{equation} + d + """ + ) + ) + data_regression.check([t.as_dict() for t in tokens]) + + +@pytest.mark.parametrize( + "line,title,input,expected", + read_fixture_file(FIXTURE_PATH.joinpath("fixtures", "amsmath.md")), +) +def test_fixtures(line, title, input, expected): + md = MarkdownIt("commonmark").use(amsmath_plugin) + md.options["xhtmlOut"] = False + text = md.render(input) + print(text) + assert text.rstrip() == expected.rstrip() |