(self, a, b)
| 467 | ), "%r and %r do reference the same indoes" % (a, b) |
| 468 | |
| 469 | def assert_inode_equal(self, a, b): |
| 470 | assert ( |
| 471 | os.stat(a).st_ino == os.stat(b).st_ino |
| 472 | ), "%r and %r do not reference the same indoes" % (a, b) |
| 473 | |
| 474 | def assert_content_equal(self, a, b): |
| 475 | with open(a, "rb") as a_f: |
no outgoing calls
no test coverage detected