(line, title, input, expected)
| 77 | read_fixture_file(FIXTURE_PATH.joinpath("normalize.md")), |
| 78 | ) |
| 79 | def test_normalize_url(line, title, input, expected): |
| 80 | md = MarkdownIt("commonmark") |
| 81 | text = md.render(input) |
| 82 | assert text.rstrip() == expected.rstrip() |
| 83 | |
| 84 | |
| 85 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…