示例#1
0
 def test_is_relpath_5(self):
     self.assertFalse(is_relpath("/foo/bar/qux/baz", "/foo/bar/baz"))
示例#2
0
 def test_is_relpath_3(self):
     self.assertTrue(is_relpath("/foo/bar/baz", "/"))
示例#3
0
 def test_is_relpath_4(self):
     self.assertTrue(is_relpath("/", "/"))
示例#4
0
 def test_is_relpath_2(self):
     self.assertTrue(is_relpath("/foo/bar/baz/../../../qux", "/foo/bar/baz"))