(self)
| 138 | self.assertEqual(set(["a", "b", "help"]), set(iter(options))) |
| 139 | |
| 140 | def test_getitem(self): |
| 141 | options = self._sample_options() |
| 142 | self.assertEqual(1, options["a"]) |
| 143 | |
| 144 | def test_setitem(self): |
| 145 | options = OptionParser() |
nothing calls this directly
no test coverage detected