()
| 23 | |
| 24 | |
| 25 | def test_non_utf8(): |
| 26 | with tempfile.TemporaryDirectory() as tempdir: |
| 27 | path = pathlib.Path(tempdir).joinpath("test.md") |
| 28 | path.write_bytes(b"\x80abc") |
| 29 | assert parse.main([str(path)]) == 0 |
| 30 | |
| 31 | |
| 32 | def test_print_heading(): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…