(self)
| 299 | tester('ntpath.isabs("\\\\.\\C:")', 1) |
| 300 | |
| 301 | def test_commonprefix(self): |
| 302 | with warnings_helper.check_warnings((".*commonpath().*", DeprecationWarning)): |
| 303 | self.do_test_commonprefix() |
| 304 | |
| 305 | def do_test_commonprefix(self): |
| 306 | tester('ntpath.commonprefix(["/home/swenson/spam", "/home/swen/spam"])', |
nothing calls this directly
no test coverage detected