(t *testing.T)
| 106 | } |
| 107 | |
| 108 | func TestNewAliasCommand_SubcommandCount(t *testing.T) { |
| 109 | cmd := NewAliasCommand() |
| 110 | assert.Len(t, cmd.Commands(), 3, "alias command should have exactly 3 subcommands") |
| 111 | } |
| 112 | |
| 113 | // --- List command --- |
| 114 |
nothing calls this directly
no test coverage detected