(self)
| 246 | self._check_options_values(options) |
| 247 | |
| 248 | def test_multiple_string(self): |
| 249 | options = OptionParser() |
| 250 | options.define("foo", type=str, multiple=True) |
| 251 | options.parse_command_line(["main.py", "--foo=a,b,c"]) |
| 252 | self.assertEqual(options.foo, ["a", "b", "c"]) |
| 253 | |
| 254 | def test_multiple_int(self): |
| 255 | options = OptionParser() |
nothing calls this directly
no test coverage detected