(self)
| 1383 | self.assertEqual(opt._long_opts, ["--dry-run"]) |
| 1384 | |
| 1385 | def test_conflict_override_help(self): |
| 1386 | self.assertOutput(["-h"], """\ |
| 1387 | Options: |
| 1388 | -h, --help show this help message and exit |
| 1389 | -n, --dry-run dry run mode |
| 1390 | """) |
| 1391 | |
| 1392 | def test_conflict_override_args(self): |
| 1393 | self.assertParseOK(["-n"], |
nothing calls this directly
no test coverage detected