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