(filedir)
| 57 | |
| 58 | |
| 59 | def invalid_textfile(filedir): |
| 60 | # Generate and return an invalid filename. |
| 61 | fd, path = mkstemp(suffix='.txt', prefix='dstmp_', dir=filedir) |
| 62 | os.close(fd) |
| 63 | os.remove(path) |
| 64 | return path |
| 65 | |
| 66 | |
| 67 | def valid_httpurl(): |
no test coverage detected
searching dependent graphs…