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