(self)
| 703 | []) |
| 704 | |
| 705 | def test_long_option_argument_split(self): |
| 706 | self.assertParseOK(["--boo", "111"], |
| 707 | {'a': None, 'boo': 111, 'foo': None}, |
| 708 | []) |
| 709 | |
| 710 | def test_long_option_short_option(self): |
| 711 | self.assertParseOK(["--foo=bar", "-axyz"], |
nothing calls this directly
no test coverage detected