(self)
| 1702 | self._test_pathname("foo" + os.sep + os.sep, "foo", dir=True) |
| 1703 | |
| 1704 | def test_abs_pathnames(self): |
| 1705 | if sys.platform == "win32": |
| 1706 | self._test_pathname("C:\\foo", "foo") |
| 1707 | else: |
| 1708 | self._test_pathname("/foo", "foo") |
| 1709 | self._test_pathname("///foo", "foo") |
| 1710 | |
| 1711 | def test_cwd(self): |
| 1712 | # Test adding the current working directory. |
nothing calls this directly
no test coverage detected