(self)
| 3483 | |
| 3484 | @force_not_colorized |
| 3485 | def test_help_when_required(self): |
| 3486 | format_help = self.get_parser(required=True).format_help |
| 3487 | help = self.usage_when_required + self.help |
| 3488 | self.assertEqual(format_help(), textwrap.dedent(help)) |
| 3489 | |
| 3490 | |
| 3491 | class TestMutuallyExclusiveSimple(MEMixin, TestCase): |
nothing calls this directly
no test coverage detected