(self)
| 2206 | "add file as hardlink failed") |
| 2207 | |
| 2208 | def test_dereference_hardlink(self): |
| 2209 | self.tar.dereference = True |
| 2210 | tarinfo = self.tar.gettarinfo(self.bar) |
| 2211 | self.assertEqual(tarinfo.type, tarfile.REGTYPE, |
| 2212 | "dereferencing hardlink failed") |
| 2213 | |
| 2214 | |
| 2215 | class PaxWriteTest(GNUWriteTest): |
nothing calls this directly
no test coverage detected