(self)
| 723 | self.assertEqual(vars(defaults), vars(options)) |
| 724 | |
| 725 | def test_ambiguous_option(self): |
| 726 | self.parser.add_option("--foz", action="store", |
| 727 | type="string", dest="foo") |
| 728 | self.assertParseFail(["--f=bar"], |
| 729 | "ambiguous option: --f (--foo, --foz?)") |
| 730 | |
| 731 | |
| 732 | def test_short_and_long_option_split(self): |
nothing calls this directly
no test coverage detected