Searched refs:splitextTest (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Lib/test/ |
D | test_posixpath.py | 76 def splitextTest(self, path, filename, ext): member in PosixPathTest 105 self.splitextTest("foo.bar", "foo", ".bar") 106 self.splitextTest("foo.boo.bar", "foo.boo", ".bar") 107 self.splitextTest("foo.boo.biff.bar", "foo.boo.biff", ".bar") 108 self.splitextTest(".csh.rc", ".csh", ".rc") 109 self.splitextTest("nodots", "nodots", "") 110 self.splitextTest(".cshrc", ".cshrc", "") 111 self.splitextTest("...manydots", "...manydots", "") 112 self.splitextTest("...manydots.ext", "...manydots", ".ext") 113 self.splitextTest(".", ".", "") [all …]
|