()
| 10 | |
| 11 | |
| 12 | def test_parse(): |
| 13 | with tempfile.TemporaryDirectory() as tempdir: |
| 14 | path = pathlib.Path(tempdir).joinpath("test.md") |
| 15 | path.write_text("a b c") |
| 16 | assert parse.main([str(path)]) == 0 |
| 17 | |
| 18 | |
| 19 | def test_parse_fail(): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…