]> granicus.if.org Git - python/commitdiff
Merged revisions 78080 via svnmerge from
authorGeorg Brandl <georg@python.org>
Sun, 7 Feb 2010 13:05:51 +0000 (13:05 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 7 Feb 2010 13:05:51 +0000 (13:05 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78080 | georg.brandl | 2010-02-07 13:55:12 +0100 (So, 07 Feb 2010) | 1 line

  Remove duplicate test method.
........

Lib/test/test_posixpath.py

index f6cb047da5e149820c46d7ae0f46c2e759594dc9..c2f3a4a47bb0d838ca99af5cfb9a5821b7632975 100644 (file)
@@ -2,7 +2,7 @@ import unittest
 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 @@ class PosixPathTest(unittest.TestCase):
 
         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("/"), "")