(self)
| 133 | return options |
| 134 | |
| 135 | def test_iter(self): |
| 136 | options = self._sample_options() |
| 137 | # OptionParsers always define 'help'. |
| 138 | self.assertEqual(set(["a", "b", "help"]), set(iter(options))) |
| 139 | |
| 140 | def test_getitem(self): |
| 141 | options = self._sample_options() |
nothing calls this directly
no test coverage detected