File: test_wordcount.py

package info (click to toggle)
mdit-py-plugins 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 692 kB
  • sloc: python: 3,702; sh: 8; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 708 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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