(self)
| 34 | .format(self.pathmodule.__name__, attr)) |
| 35 | |
| 36 | def test_commonprefix(self): |
| 37 | with warnings_helper.check_warnings((".*commonpath().*", DeprecationWarning)): |
| 38 | self.do_test_commonprefix() |
| 39 | |
| 40 | def do_test_commonprefix(self): |
| 41 | commonprefix = self.pathmodule.commonprefix |
nothing calls this directly
no test coverage detected