(self, a, b, msg=None)
| 102 | """ |
| 103 | |
| 104 | def assertPathsEqual(self, a, b, msg=None): |
| 105 | self.assertEqual(a.replace(os.sep, '/'), b.replace(os.sep, '/'), msg=msg) |
| 106 | |
| 107 | def assertPathExists(self, *parts): |
| 108 | path = os.path.join(*parts) |
no outgoing calls