Lines Matching refs:_test_pathname
1439 def _test_pathname(self, path, cmp_path=None, dir=False):
1496 self._test_pathname("foo")
1497 self._test_pathname(os.path.join("foo", ".", "bar"))
1498 self._test_pathname(os.path.join("foo", "..", "bar"))
1499 self._test_pathname(os.path.join(".", "foo"))
1500 self._test_pathname(os.path.join(".", "foo", "."))
1501 self._test_pathname(os.path.join(".", "foo", ".", "bar"))
1502 self._test_pathname(os.path.join(".", "foo", "..", "bar"))
1503 self._test_pathname(os.path.join(".", "foo", "..", "bar"))
1504 self._test_pathname(os.path.join("..", "foo"))
1505 self._test_pathname(os.path.join("..", "foo", ".."))
1506 self._test_pathname(os.path.join("..", "foo", ".", "bar"))
1507 self._test_pathname(os.path.join("..", "foo", "..", "bar"))
1509 self._test_pathname("foo" + os.sep + os.sep + "bar")
1510 self._test_pathname("foo" + os.sep + os.sep, "foo", dir=True)
1514 self._test_pathname("C:\\foo", "foo")
1516 self._test_pathname("/foo", "foo")
1517 self._test_pathname("///foo", "foo")