()
| 135 | |
| 136 | |
| 137 | def test_fileattachment(): |
| 138 | doc = pymupdf.open() |
| 139 | page = doc.new_page() |
| 140 | annot = page.add_file_annot(rect.tl, b"just anything for testing", "testdata.txt") |
| 141 | assert annot.type == (17, "FileAttachment") |
| 142 | |
| 143 | |
| 144 | def test_stamp(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…