()
| 885 | |
| 886 | |
| 887 | def test_3070(): |
| 888 | with pymupdf.open(os.path.abspath(f'{__file__}/../../tests/resources/test_3070.pdf')) as pdf: |
| 889 | links = pdf[0].get_links() |
| 890 | links[0]['uri'] = "https://www.ddg.gg" |
| 891 | pdf[0].update_link(links[0]) |
| 892 | pdf.save(os.path.abspath(f'{__file__}/../../tests/test_3070_out.pdf')) |
| 893 | |
| 894 | def test_bboxlog_2885(): |
| 895 | doc = pymupdf.open(os.path.abspath(f'{__file__}/../../tests/resources/test_2885.pdf')) |
nothing calls this directly
no test coverage detected
searching dependent graphs…