(self)
| 17 | |
| 18 | class JoinTestBase: |
| 19 | def test_is_joinable(self): |
| 20 | p = self.cls() |
| 21 | self.assertIsInstance(p, _JoinablePath) |
| 22 | |
| 23 | def test_parser(self): |
| 24 | self.assertIsInstance(self.cls.parser, _PathParser) |
nothing calls this directly
no test coverage detected