(line, title, input, expected)
| 130 | read_fixture_file(FIXTURE_PATH.joinpath("tasklists.md")), |
| 131 | ) |
| 132 | def test_tasklists(line, title, input, expected): |
| 133 | md = MarkdownIt("gfm-like2") |
| 134 | text = md.render(input) |
| 135 | assert text.rstrip() == expected.rstrip() |
| 136 | |
| 137 | |
| 138 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…