Copy one test file from data_dir to tmp_dir
(src, dst='')
| 378 | """ |
| 379 | |
| 380 | def copyTestFile(src, dst=''): |
| 381 | """ Copy one test file from data_dir to tmp_dir """ |
| 382 | if not dst: |
| 383 | dst = src |
| 384 | shutil.copy(os.path.join(Config.data_dir, src), |
| 385 | os.path.join(Config.tmp_dir, dst)) |
| 386 | |
| 387 | |
| 388 | def diffCheck(file1, file2, in_bytes=False, encoding=None): |
no test coverage detected