(self)
| 1685 | self._test_pathname("foo" + os.sep + os.sep, "foo", dir=True) |
| 1686 | |
| 1687 | def test_abs_pathnames(self): |
| 1688 | if sys.platform == "win32": |
| 1689 | self._test_pathname("C:\\foo", "foo") |
| 1690 | else: |
| 1691 | self._test_pathname("/foo", "foo") |
| 1692 | self._test_pathname("///foo", "foo") |
| 1693 | |
| 1694 | def test_cwd(self): |
| 1695 | # Test adding the current working directory. |
nothing calls this directly
no test coverage detected