(self)
| 5089 | self.assertEqual(stat1, stat2) |
| 5090 | |
| 5091 | def test_uninstantiable(self): |
| 5092 | scandir_iter = os.scandir(self.path) |
| 5093 | self.assertRaises(TypeError, type(scandir_iter)) |
| 5094 | scandir_iter.close() |
| 5095 | |
| 5096 | def test_unpickable(self): |
| 5097 | filename = self.create_file("file.txt") |
nothing calls this directly
no test coverage detected