Dummy command group for testing.
| 221 | |
| 222 | |
| 223 | class DummyCommandGroup(CommandGroup): |
| 224 | """Dummy command group for testing.""" |
| 225 | |
| 226 | @property |
| 227 | def name(self) -> str: |
| 228 | return "test_group" |
| 229 | |
| 230 | @property |
| 231 | def description(self) -> str: |
| 232 | return "Test command group" |
| 233 | |
| 234 | |
| 235 | class TestCommandGroup: |
no outgoing calls