(tmp_path, param)
| 6079 | |
| 6080 | |
| 6081 | def normalize_filename(tmp_path, param): |
| 6082 | # Handles two cases, where filename should |
| 6083 | # be a string, or a path object. |
| 6084 | path = tmp_path / "file" |
| 6085 | if param == "string": |
| 6086 | return str(path) |
| 6087 | return path |
| 6088 | |
| 6089 | |
| 6090 | class TestIO: |
no outgoing calls
no test coverage detected
searching dependent graphs…