(self)
| 1344 | self.assertEqual(verbose_opt._long_opts, ["--verbose"]) |
| 1345 | |
| 1346 | def test_conflict_resolve_help(self): |
| 1347 | self.assertOutput(["-h"], """\ |
| 1348 | Options: |
| 1349 | --verbose increment verbosity |
| 1350 | -h, --help show this help message and exit |
| 1351 | -v, --version show version |
| 1352 | """) |
| 1353 | |
| 1354 | def test_conflict_resolve_short_opt(self): |
| 1355 | self.assertParseOK(["-v"], |
nothing calls this directly
no test coverage detected