(destination_dir)
| 2068 | f.write(b'test2') |
| 2069 | |
| 2070 | def check_copied_files(destination_dir): |
| 2071 | with localfs.open_input_stream(str(destination_dir / "file1")) as f: |
| 2072 | assert f.read() == b"test1" |
| 2073 | with localfs.open_input_stream(str(destination_dir / "file2")) as f: |
| 2074 | assert f.read() == b"test2" |
| 2075 | |
| 2076 | # Copy directory with local file paths |
| 2077 | destination_dir1 = tempdir / "destination1" |
no test coverage detected