(self, test_name: str = "tools")
| 99 | """Concrete CommandGroup for testing subcommand dispatch.""" |
| 100 | |
| 101 | def __init__(self, test_name: str = "tools"): |
| 102 | super().__init__() |
| 103 | self._name = test_name |
| 104 | self._description = f"Mock command group: {test_name}" |
| 105 | self._modes = CommandMode.CHAT |
| 106 | self._aliases: list[str] = [] |
| 107 | self._requires_context = False |
| 108 | self._parameters: list[CommandParameter] = [] |
| 109 | |
| 110 | @property |
| 111 | def name(self) -> str: |