Home | History | Annotate | Download | only in test

Lines Matching refs:_test_pathname

982     def _test_pathname(self, path, cmp_path=None, dir=False):
1011 self._test_pathname("foo")
1012 self._test_pathname(os.path.join("foo", ".", "bar"))
1013 self._test_pathname(os.path.join("foo", "..", "bar"))
1014 self._test_pathname(os.path.join(".", "foo"))
1015 self._test_pathname(os.path.join(".", "foo", "."))
1016 self._test_pathname(os.path.join(".", "foo", ".", "bar"))
1017 self._test_pathname(os.path.join(".", "foo", "..", "bar"))
1018 self._test_pathname(os.path.join(".", "foo", "..", "bar"))
1019 self._test_pathname(os.path.join("..", "foo"))
1020 self._test_pathname(os.path.join("..", "foo", ".."))
1021 self._test_pathname(os.path.join("..", "foo", ".", "bar"))
1022 self._test_pathname(os.path.join("..", "foo", "..", "bar"))
1024 self._test_pathname("foo" + os.sep + os.sep + "bar")
1025 self._test_pathname("foo" + os.sep + os.sep, "foo", dir=True)
1029 self._test_pathname("C:\\foo", "foo")
1031 self._test_pathname("/foo", "foo")
1032 self._test_pathname("///foo", "foo")