(self, a, b)
| 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, |
| 435 | "%r and %r do reference the same indoes" %(a, b)) |
| 436 | |
| 437 | def assert_inode_equal(self, a, b): |
| 438 | nt.assert_equal(os.stat(a).st_ino, os.stat(b).st_ino, |