(self)
| 1520 | self.assertHelpEquals(_expected_help_basic) |
| 1521 | |
| 1522 | def test_help_long_opts_first(self): |
| 1523 | self.parser.formatter.short_first = 0 |
| 1524 | self.assertHelpEquals(_expected_help_long_opts_first) |
| 1525 | |
| 1526 | def test_help_title_formatter(self): |
| 1527 | with os_helper.EnvironmentVarGuard() as env: |
nothing calls this directly
no test coverage detected