Move some tests from test_macpath to test_genericpath.CommonTest

This commit is contained in:
Florent Xicluna 2010-03-08 12:39:35 +00:00
parent fed15766f9
commit 6f682be82b
2 changed files with 12 additions and 10 deletions

View File

@ -47,6 +47,18 @@ class GenericTest(unittest.TestCase):
commonprefix(["/home/swen/spam", "/home/swen/spam"]),
"/home/swen/spam"
)
self.assertEqual(
commonprefix(["home:swenson:spam", "home:swen:spam"]),
"home:swen"
)
self.assertEqual(
commonprefix([":home:swen:spam", ":home:swen:eggs"]),
":home:swen:"
)
self.assertEqual(
commonprefix([":home:swen:spam", ":home:swen:spam"]),
":home:swen:spam"
)
testlist = ['', 'abc', 'Xbcd', 'Xb', 'XY', 'abcd',
'aXc', 'abd', 'ab', 'aX', 'abcX']

View File

@ -18,16 +18,6 @@ class MacPathTestCase(unittest.TestCase):
self.assertFalse(isabs(":foo:bar"))
self.assertFalse(isabs(":foo:bar:"))
def test_commonprefix(self):
commonprefix = macpath.commonprefix
self.assertEqual(commonprefix(["home:swenson:spam", "home:swen:spam"]),
"home:swen")
self.assertEqual(commonprefix([":home:swen:spam", ":home:swen:eggs"]),
":home:swen:")
self.assertEqual(commonprefix([":home:swen:spam", ":home:swen:spam"]),
":home:swen:spam")
def test_split(self):
split = macpath.split
self.assertEqual(split("foo:bar"),