(self)
| 2201 | "add file as regular failed") |
| 2202 | |
| 2203 | def test_add_hardlink(self): |
| 2204 | tarinfo = self.tar.gettarinfo(self.bar) |
| 2205 | self.assertEqual(tarinfo.type, tarfile.LNKTYPE, |
| 2206 | "add file as hardlink failed") |
| 2207 | |
| 2208 | def test_dereference_hardlink(self): |
| 2209 | self.tar.dereference = True |
nothing calls this directly
no test coverage detected