(self)
| 4762 | |
| 4763 | class TestDirEntry(unittest.TestCase): |
| 4764 | def setUp(self): |
| 4765 | self.path = os.path.realpath(os_helper.TESTFN) |
| 4766 | self.addCleanup(os_helper.rmtree, self.path) |
| 4767 | os.mkdir(self.path) |
| 4768 | |
| 4769 | def test_uninstantiable(self): |
| 4770 | self.assertRaises(TypeError, os.DirEntry) |
nothing calls this directly
no test coverage detected