(src, dst)
| 1006 | copied = [] |
| 1007 | |
| 1008 | def copy_function(src, dst): |
| 1009 | shutil.copy2(src, dst) |
| 1010 | copied.append(dst) |
| 1011 | |
| 1012 | library.python.fs.copy_tree( |
| 1013 | "test_copy_tree_src", yatest.common.work_path("test_copy_tree_dst"), copy_function=copy_function |
no test coverage detected