(t *testing.T)
| 46 | } |
| 47 | |
| 48 | func TestNewCreateCommand_Aliases(t *testing.T) { |
| 49 | cmd := NewCreateCommand() |
| 50 | |
| 51 | expectedAliases := []string{"cre", "crt", "add"} |
| 52 | assert.Equal(t, expectedAliases, cmd.Aliases) |
| 53 | } |
| 54 | |
| 55 | func TestNewCreateCommand_Subcommands(t *testing.T) { |
| 56 | cmd := NewCreateCommand() |
nothing calls this directly
no test coverage detected