(self)
| 683 | []) |
| 684 | |
| 685 | def test_option_argument_split(self): |
| 686 | self.assertParseOK(["-a", "34"], |
| 687 | {'a': "34", 'boo': None, 'foo': None}, |
| 688 | []) |
| 689 | |
| 690 | def test_option_argument_joined_integer(self): |
| 691 | self.assertParseOK(["-b34"], |
nothing calls this directly
no test coverage detected