(self)
| 688 | []) |
| 689 | |
| 690 | def test_option_argument_joined_integer(self): |
| 691 | self.assertParseOK(["-b34"], |
| 692 | {'a': None, 'boo': 34, 'foo': None}, |
| 693 | []) |
| 694 | |
| 695 | def test_option_argument_split_negative_integer(self): |
| 696 | self.assertParseOK(["-b", "-5"], |
nothing calls this directly
no test coverage detected