(self)
| 2184 | "add file as regular failed") |
| 2185 | |
| 2186 | def test_add_hardlink(self): |
| 2187 | tarinfo = self.tar.gettarinfo(self.bar) |
| 2188 | self.assertEqual(tarinfo.type, tarfile.LNKTYPE, |
| 2189 | "add file as hardlink failed") |
| 2190 | |
| 2191 | def test_dereference_hardlink(self): |
| 2192 | self.tar.dereference = True |
nothing calls this directly
no test coverage detected