(self, *args)
| 428 | self.tempdir.cleanup() |
| 429 | |
| 430 | def dst(self, *args): |
| 431 | return os.path.join(self.tempdir.name, *args) |
| 432 | |
| 433 | def assert_inode_not_equal(self, a, b): |
| 434 | nt.assert_not_equal(os.stat(a).st_ino, os.stat(b).st_ino, |
no outgoing calls
no test coverage detected