(self)
| 309 | self._check_iteration(self._box.iterkeys, do_keys=True, do_values=False) |
| 310 | |
| 311 | def test_keys(self): |
| 312 | # Get keys using keys() |
| 313 | self._check_iteration(self._box.keys, do_keys=True, do_values=False) |
| 314 | |
| 315 | def test_itervalues(self): |
| 316 | # Get values using itervalues() |
nothing calls this directly
no test coverage detected