(self)
| 1378 | help="dry run mode") |
| 1379 | |
| 1380 | def test_conflict_override_opts(self): |
| 1381 | opt = self.parser.get_option("--dry-run") |
| 1382 | self.assertEqual(opt._short_opts, ["-n"]) |
| 1383 | self.assertEqual(opt._long_opts, ["--dry-run"]) |
| 1384 | |
| 1385 | def test_conflict_override_help(self): |
| 1386 | self.assertOutput(["-h"], """\ |
nothing calls this directly
no test coverage detected