(self)
| 708 | []) |
| 709 | |
| 710 | def test_long_option_short_option(self): |
| 711 | self.assertParseOK(["--foo=bar", "-axyz"], |
| 712 | {'a': 'xyz', 'boo': None, 'foo': ["bar"]}, |
| 713 | []) |
| 714 | |
| 715 | def test_abbrev_long_option(self): |
| 716 | self.assertParseOK(["--f=bar", "-axyz"], |
nothing calls this directly
no test coverage detected