(self)
| 122 | self.assertTrue(self.ground.isdir(p)) |
| 123 | |
| 124 | def test_symlink_to(self): |
| 125 | if not self.ground.can_symlink: |
| 126 | self.skipTest('needs symlinks') |
| 127 | link = self.root.joinpath('linkA') |
| 128 | link.symlink_to('fileA') |
| 129 | self.assertTrue(self.ground.islink(link)) |
| 130 | self.assertEqual(self.ground.readlink(link), 'fileA') |
| 131 | |
| 132 | |
| 133 | class ZipPathWriteTest(WriteTestBase, unittest.TestCase): |
nothing calls this directly
no test coverage detected