()
| 100 | |
| 101 | |
| 102 | def test_polygon(): |
| 103 | doc = pymupdf.open() |
| 104 | page = doc.new_page() |
| 105 | annot = page.add_polygon_annot([rect.bl, rect.tr, rect.br, rect.tl]) |
| 106 | assert annot.type == (6, "Polygon") |
| 107 | |
| 108 | |
| 109 | def test_line(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…