(self)
| 4814 | self.assertEqual(stat1, stat2) |
| 4815 | |
| 4816 | def test_uninstantiable(self): |
| 4817 | scandir_iter = os.scandir(self.path) |
| 4818 | self.assertRaises(TypeError, type(scandir_iter)) |
| 4819 | scandir_iter.close() |
| 4820 | |
| 4821 | def test_unpickable(self): |
| 4822 | filename = self.create_file("file.txt") |
nothing calls this directly
no test coverage detected