(self)
| 730 | |
| 731 | |
| 732 | def test_short_and_long_option_split(self): |
| 733 | self.assertParseOK(["-a", "xyz", "--foo", "bar"], |
| 734 | {'a': 'xyz', 'boo': None, 'foo': ["bar"]}, |
| 735 | []) |
| 736 | |
| 737 | def test_short_option_split_long_option_append(self): |
| 738 | self.assertParseOK(["--foo=bar", "-b", "123", "--foo", "baz"], |
nothing calls this directly
no test coverage detected