(self, a, b)
| 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, |
| 439 | "%r and %r do not reference the same indoes" %(a, b)) |
| 440 | |
| 441 | def assert_content_equal(self, a, b): |
| 442 | with open(a) as a_f: |
no outgoing calls
no test coverage detected