(self, a, b)
| 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: |
| 476 | with open(b, "rb") as b_f: |
| 477 | assert a_f.read() == b_f.read() |
| 478 | |
| 479 | @skip_win32 |
| 480 | def test_link_successful(self): |
no test coverage detected