(self, kwargs)
| 1285 | |
| 1286 | @_parameterize({}, {'strict': True}, {'strict': ALL_BUT_LAST}, {'strict': ALLOW_MISSING}) |
| 1287 | def test_path_realpath(self, kwargs): |
| 1288 | self.assertPathEqual(self.path.realpath) |
| 1289 | |
| 1290 | self.assertPathEqual(partial(self.path.realpath, **kwargs)) |
| 1291 | |
| 1292 | def test_path_relpath(self): |
| 1293 | self.assertPathEqual(self.path.relpath) |
nothing calls this directly
no test coverage detected