test_abspath (__main__.PosixPathTest) ... FAIL test_basename (__main__.PosixPathTest) ... ok test_commonprefix (__main__.PosixPathTest) ... ok test_dirname (__main__.PosixPathTest) ... ok test_exists (__main__.PosixPathTest) ... ok test_expanduser (__main__.PosixPathTest) ... ERROR test_expandvars (__main__.PosixPathTest) ... ok test_getsize (__main__.PosixPathTest) ... ok test_isabs (__main__.PosixPathTest) ... ok test_isdir (__main__.PosixPathTest) ... ok test_isfile (__main__.PosixPathTest) ... ok test_islink (__main__.PosixPathTest) ... ERROR test_ismount (__main__.PosixPathTest) ... ok test_join (__main__.PosixPathTest) ... ok test_normcase (__main__.PosixPathTest) ... ok test_normpath (__main__.PosixPathTest) ... ok test_samefile (__main__.PosixPathTest) ... ERROR test_samestat (__main__.PosixPathTest) ... ERROR test_split (__main__.PosixPathTest) ... ok test_splitdrive (__main__.PosixPathTest) ... ok test_splitext (__main__.PosixPathTest) ... ok test_time (__main__.PosixPathTest) ... FAIL ====================================================================== ERROR: test_expanduser (__main__.PosixPathTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "test_posixpath.py", line 300, in test_expanduser self.assert_(isinstance(posixpath.expanduser("~root/"), basestring)) File "C:\PY23\lib\posixpath.py", line 316, in expanduser import pwd ImportError: No module named pwd ====================================================================== ERROR: test_islink (__main__.PosixPathTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "test_posixpath.py", line 142, in test_islink os.symlink(test_support.TESTFN + "1", test_support.TESTFN + "2") AttributeError: 'module' object has no attribute 'symlink' ====================================================================== ERROR: test_samefile (__main__.PosixPathTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "test_posixpath.py", line 233, in test_samefile os.symlink(test_support.TESTFN + "1", test_support.TESTFN + "2") AttributeError: 'module' object has no attribute 'symlink' ====================================================================== ERROR: test_samestat (__main__.PosixPathTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "test_posixpath.py", line 259, in test_samestat os.symlink(test_support.TESTFN + "1", test_support.TESTFN + "2") AttributeError: 'module' object has no attribute 'symlink' ====================================================================== FAIL: test_abspath (__main__.PosixPathTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "test_posixpath.py", line 345, in test_abspath self.assert_(posixpath.realpath("").startswith("/")) File "C:\PY23\lib\unittest.py", line 268, in failUnless if not expr: raise self.failureException, msg AssertionError ====================================================================== FAIL: test_time (__main__.PosixPathTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "test_posixpath.py", line 125, in test_time self.assert_( File "C:\PY23\lib\unittest.py", line 268, in failUnless if not expr: raise self.failureException, msg AssertionError ---------------------------------------------------------------------- Ran 22 tests in 0.600s FAILED (failures=2, errors=4)