()
| 21 | |
| 22 | |
| 23 | def test_simple_toc(): |
| 24 | simple_lines = open(simple_toc, "rb").read() |
| 25 | toc = b"".join([str(t).encode() for t in doc.get_toc(True)]) |
| 26 | assert toc == simple_lines |
| 27 | |
| 28 | |
| 29 | def test_full_toc(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…