Return the absolute path to the file having *filename* in acceptance test_files directory.
(filename: str)
| 37 | |
| 38 | |
| 39 | def test_file(filename: str) -> str: |
| 40 | """Return the absolute path to the file having *filename* in acceptance test_files directory.""" |
| 41 | return absjoin(thisdir, "test_files", filename) |
| 42 | |
| 43 | |
| 44 | def test_image(filename: str): |
no test coverage detected
searching dependent graphs…