(self)
| 1985 | self.assertEqual(actual, expected) |
| 1986 | |
| 1987 | def test_join(self): |
| 1988 | for i in range(1, 4): |
| 1989 | paths = ["pathNew"] * i |
| 1990 | expected = "path1" + (self.sep + "pathNew") * i |
| 1991 | actual = path_join_robust("path1", *paths) |
| 1992 | |
| 1993 | self.assertEqual(actual, expected) |
| 1994 | |
| 1995 | def test_join_unicode(self): |
| 1996 | for i in range(1, 4): |
nothing calls this directly
no test coverage detected