(self)
| 666 | self.assertParseOK([], {'a': None, 'boo': None, 'foo': None}, []) |
| 667 | |
| 668 | def test_shortopt_empty_longopt_append(self): |
| 669 | self.assertParseOK(["-a", "", "--foo=blah", "--foo="], |
| 670 | {'a': "", 'boo': None, 'foo': ["blah", ""]}, |
| 671 | []) |
| 672 | |
| 673 | def test_long_option_append(self): |
| 674 | self.assertParseOK(["--foo", "bar", "--foo", "", "--foo=x"], |
nothing calls this directly
no test coverage detected