(self)
| 713 | []) |
| 714 | |
| 715 | def test_abbrev_long_option(self): |
| 716 | self.assertParseOK(["--f=bar", "-axyz"], |
| 717 | {'a': 'xyz', 'boo': None, 'foo': ["bar"]}, |
| 718 | []) |
| 719 | |
| 720 | def test_defaults(self): |
| 721 | (options, args) = self.parser.parse_args([]) |
nothing calls this directly
no test coverage detected