mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Move some tests from test_macpath to test_genericpath.CommonTest
This commit is contained in:
parent
fed15766f9
commit
6f682be82b
2 changed files with 12 additions and 10 deletions
|
@ -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"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue