(self)
| 43 | class PosixPathTest(unittest.TestCase): |
| 44 | |
| 45 | def setUp(self): |
| 46 | for suffix in ["", "1", "2"]: |
| 47 | self.assertFalse(posixpath.lexists(ABSTFN + suffix)) |
| 48 | |
| 49 | def test_join(self): |
| 50 | fn = posixpath.join |
nothing calls this directly
no test coverage detected