(self)
| 141 | self.target_ground.readbytes(result)) |
| 142 | |
| 143 | def test_copy_into_empty_name(self): |
| 144 | source = self.source_root.with_segments() |
| 145 | target_dir = self.target_root / 'dirA' |
| 146 | self.target_ground.create_dir(target_dir) |
| 147 | self.assertRaises(ValueError, source.copy_into, target_dir) |
| 148 | |
| 149 | |
| 150 | class ZipToZipPathCopyTest(CopyTestBase, unittest.TestCase): |
nothing calls this directly
no test coverage detected