Test creating a command group.
(self)
| 236 | """Test the CommandGroup class.""" |
| 237 | |
| 238 | def test_group_creation(self): |
| 239 | """Test creating a command group.""" |
| 240 | group = DummyCommandGroup() |
| 241 | assert group.subcommands == {} |
| 242 | |
| 243 | def test_add_subcommand(self): |
| 244 | """Test adding subcommands.""" |
nothing calls this directly
no test coverage detected