()
| 14 | |
| 15 | |
| 16 | def test_rotation1(): |
| 17 | doc = pymupdf.open() |
| 18 | page = doc.new_page() |
| 19 | page.set_rotation(270) |
| 20 | assert doc.xref_get_key(page.xref, "Rotate") == ("int", "270") |
| 21 | |
| 22 | |
| 23 | def test_rotation2(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…