Lines Matching refs:pathmodule
21 pathmodule = genericpath variable in GenericTest
29 getattr(self.pathmodule, attr)()
31 .format(self.pathmodule.__name__, attr))
34 commonprefix = self.pathmodule.commonprefix
80 self.assertEqual(self.pathmodule.getsize(test_support.TESTFN), 3)
100 self.pathmodule.getctime(test_support.TESTFN),
101 self.pathmodule.getmtime(test_support.TESTFN)
109 self.assertIs(self.pathmodule.exists(test_support.TESTFN), False)
114 self.assertIs(self.pathmodule.exists(test_support.TESTFN), True)
115 if not self.pathmodule == genericpath:
116 self.assertIs(self.pathmodule.lexists(test_support.TESTFN),
124 self.assertIs(self.pathmodule.isdir(test_support.TESTFN), False)
129 self.assertIs(self.pathmodule.isdir(test_support.TESTFN), False)
132 self.assertIs(self.pathmodule.isdir(test_support.TESTFN), True)
141 self.assertIs(self.pathmodule.isfile(test_support.TESTFN), False)
146 self.assertIs(self.pathmodule.isfile(test_support.TESTFN), True)
149 self.assertIs(self.pathmodule.isfile(test_support.TESTFN), False)
163 pathmodule = None variable in CommonTest
177 p = self.pathmodule.normcase(p)
178 self.assertEqual(p, self.pathmodule.normcase(p))
182 splitdrive = self.pathmodule.splitdrive
188 if self.pathmodule.__name__ == 'macpath':
190 expandvars = self.pathmodule.expandvars
210 if self.pathmodule.__name__ == 'macpath':
212 expandvars = self.pathmodule.expandvars
237 self.assertIn("foo", self.pathmodule.abspath("foo"))
241 self.assertIsInstance(self.pathmodule.abspath(path), str)
244 self.assertIn("foo", self.pathmodule.realpath("foo"))
250 self.assertIsInstance(self.pathmodule.normpath(path), unicode)
256 abspath = self.pathmodule.abspath