deletes a sample file at some path
(filepath: str)
| 13 | |
| 14 | |
| 15 | def _delete_sample_file(filepath: str): |
| 16 | """deletes a sample file at some path""" |
| 17 | if os.path.exists(filepath): |
| 18 | os.remove(filepath) |
| 19 | |
| 20 | |
| 21 | def test_srcfile_import_success(): |
no outgoing calls
no test coverage detected