(self)
| 1516 | self.assertHelpEquals(_expected_help_basic) |
| 1517 | |
| 1518 | def test_help_old_usage(self): |
| 1519 | self.parser.set_usage("Usage: %prog [options]") |
| 1520 | self.assertHelpEquals(_expected_help_basic) |
| 1521 | |
| 1522 | def test_help_long_opts_first(self): |
| 1523 | self.parser.formatter.short_first = 0 |
nothing calls this directly
no test coverage detected