(self)
| 1977 | |
| 1978 | class TestPathJoinRobust(Base): |
| 1979 | def test_basic(self): |
| 1980 | expected = "path1" |
| 1981 | actual = path_join_robust("path1") |
| 1982 | self.assertEqual(actual, expected) |
| 1983 | |
| 1984 | actual = path_join_robust(u"path1") |
| 1985 | self.assertEqual(actual, expected) |
| 1986 | |
| 1987 | def test_join(self): |
| 1988 | for i in range(1, 4): |
nothing calls this directly
no test coverage detected