Return the absolute path to image file having *filename* in test_files directory.
(filename: str)
| 42 | |
| 43 | |
| 44 | def test_image(filename: str): |
| 45 | """Return the absolute path to image file having *filename* in test_files directory.""" |
| 46 | return absjoin(thisdir, "test_files", filename) |
| 47 | |
| 48 | |
| 49 | def test_pptx(name: str) -> str: |
no test coverage detected
searching dependent graphs…