(self)
| 2189 | "add file as hardlink failed") |
| 2190 | |
| 2191 | def test_dereference_hardlink(self): |
| 2192 | self.tar.dereference = True |
| 2193 | tarinfo = self.tar.gettarinfo(self.bar) |
| 2194 | self.assertEqual(tarinfo.type, tarfile.REGTYPE, |
| 2195 | "dereferencing hardlink failed") |
| 2196 | |
| 2197 | |
| 2198 | class PaxWriteTest(GNUWriteTest): |
nothing calls this directly
no test coverage detected