Searched refs:splitextTest (Results 1 – 1 of 1) sorted by relevance
| /external/python/cpython3/Lib/test/ |
| D | test_posixpath.py | 87 def splitextTest(self, path, filename, ext): member in PosixPathTest 116 self.splitextTest("foo.bar", "foo", ".bar") 117 self.splitextTest("foo.boo.bar", "foo.boo", ".bar") 118 self.splitextTest("foo.boo.biff.bar", "foo.boo.biff", ".bar") 119 self.splitextTest(".csh.rc", ".csh", ".rc") 120 self.splitextTest("nodots", "nodots", "") 121 self.splitextTest(".cshrc", ".cshrc", "") 122 self.splitextTest("...manydots", "...manydots", "") 123 self.splitextTest("...manydots.ext", "...manydots", ".ext") 124 self.splitextTest(".", ".", "") [all …]
|