(self)
| 261 | check('/a/b', '', sep, ['a', 'b']) |
| 262 | |
| 263 | def test_empty_path(self): |
| 264 | # The empty path points to '.' |
| 265 | p = self.cls('') |
| 266 | self.assertEqual(str(p), '.') |
| 267 | # Special case for the empty path. |
| 268 | self._check_str('.', ('',)) |
| 269 | |
| 270 | def test_join_nested(self): |
| 271 | P = self.cls |
nothing calls this directly
no test coverage detected