(raw_input, expected)
| 20 | |
| 21 | @pytest.mark.parametrize("raw_input,expected", TESTS.values(), ids=TESTS.keys()) |
| 22 | def test_fuzzing(raw_input, expected): |
| 23 | md = MarkdownIt() |
| 24 | md.parse(raw_input) |
| 25 | assert md.render(raw_input) == expected |
nothing calls this directly
no test coverage detected
searching dependent graphs…