(self)
| 3477 | |
| 3478 | @force_not_colorized |
| 3479 | def test_help_when_not_required(self): |
| 3480 | format_help = self.get_parser(required=False).format_help |
| 3481 | help = self.usage_when_not_required + self.help |
| 3482 | self.assertEqual(format_help(), textwrap.dedent(help)) |
| 3483 | |
| 3484 | @force_not_colorized |
| 3485 | def test_help_when_required(self): |
nothing calls this directly
no test coverage detected