Return the absolute path to test .docx file with root name `name`.
(name: str)
| 25 | |
| 26 | |
| 27 | def test_docx(name: str): |
| 28 | """Return the absolute path to test .docx file with root name `name`.""" |
| 29 | return absjoin(thisdir, "test_files", "%s.docx" % name) |
| 30 | |
| 31 | |
| 32 | def test_file(name: str): |
no test coverage detected
searching dependent graphs…