(self)
| 678 | []) |
| 679 | |
| 680 | def test_option_argument_joined(self): |
| 681 | self.assertParseOK(["-abc"], |
| 682 | {'a': "bc", 'boo': None, 'foo': None}, |
| 683 | []) |
| 684 | |
| 685 | def test_option_argument_split(self): |
| 686 | self.assertParseOK(["-a", "34"], |
nothing calls this directly
no test coverage detected