(self, a, b)
| 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: |
| 443 | with open(b) as b_f: |
| 444 | nt.assert_equal(a_f.read(), b_f.read()) |
| 445 | |
| 446 | @skip_win32 |
| 447 | def test_link_successful(self): |
no test coverage detected