Class for testing custom help_* methods which override docstring help.
| 178 | |
| 179 | |
| 180 | class WithCommandSets(ExternalTestMixin, cmd2.Cmd): |
| 181 | """Class for testing custom help_* methods which override docstring help.""" |
| 182 | |
| 183 | def __init__(self, *args, **kwargs) -> None: |
| 184 | super().__init__(*args, **kwargs) |
| 185 | |
| 186 | |
| 187 | @pytest.fixture |
no outgoing calls
searching dependent graphs…