(fs, pathfn)
| 942 | |
| 943 | |
| 944 | def test_copy_file(fs, pathfn): |
| 945 | s = pathfn('test-copy-source-file') |
| 946 | t = pathfn('test-copy-target-file') |
| 947 | |
| 948 | with fs.open_output_stream(s): |
| 949 | pass |
| 950 | |
| 951 | fs.copy_file(s, t) |
| 952 | fs.delete_file(s) |
| 953 | fs.delete_file(t) |
| 954 | |
| 955 | |
| 956 | def test_move_directory(fs, pathfn, allow_move_dir): |
nothing calls this directly
no test coverage detected