(self)
| 439 | |
| 440 | # Test a directory |
| 441 | def test_iter_dict(self): |
| 442 | dict = {} |
| 443 | for i in range(10): |
| 444 | dict[i] = None |
| 445 | self.check_for_loop(dict, list(dict.keys())) |
| 446 | |
| 447 | # Test a file |
| 448 | def test_iter_file(self): |
nothing calls this directly
no test coverage detected