[Python-checkins] r78080 - python/trunk/Lib/test/test_posixpath.py

georg.brandl python-checkins at python.org
Sun Feb 7 13:55:12 CET 2010


Author: georg.brandl
Date: Sun Feb  7 13:55:12 2010
New Revision: 78080

Log:
Remove duplicate test method.

Modified:
   python/trunk/Lib/test/test_posixpath.py

Modified: python/trunk/Lib/test/test_posixpath.py
==============================================================================
--- python/trunk/Lib/test/test_posixpath.py	(original)
+++ python/trunk/Lib/test/test_posixpath.py	Sun Feb  7 13:55:12 2010
@@ -2,7 +2,7 @@
 from test import test_support
 
 import posixpath, os
-from posixpath import realpath, abspath, join, dirname, basename, relpath
+from posixpath import realpath, abspath, dirname, basename
 
 # An absolute path to a temporary filename for testing. We can't rely on TESTFN
 # being an absolute path, so we need this.
@@ -89,11 +89,6 @@
 
         self.assertRaises(TypeError, posixpath.isabs)
 
-    def test_splitdrive(self):
-        self.assertEqual(posixpath.splitdrive("/foo/bar"), ("", "/foo/bar"))
-
-        self.assertRaises(TypeError, posixpath.splitdrive)
-
     def test_basename(self):
         self.assertEqual(posixpath.basename("/foo/bar"), "bar")
         self.assertEqual(posixpath.basename("/"), "")


More information about the Python-checkins mailing list