(t *testing.T)
| 77 | } |
| 78 | |
| 79 | func TestNewAliasCommand_Structure(t *testing.T) { |
| 80 | cmd := NewAliasCommand() |
| 81 | |
| 82 | assert.NotNil(t, cmd) |
| 83 | assert.Equal(t, "alias <subCommand> [flags]", cmd.Use) |
| 84 | assert.Contains(t, cmd.Short, "Set, unset, and list aliases") |
| 85 | } |
| 86 | |
| 87 | func TestNewAliasCommand_Long(t *testing.T) { |
| 88 | cmd := NewAliasCommand() |
nothing calls this directly
no test coverage detected