--- Unset command ---
(t *testing.T)
| 231 | // --- Unset command --- |
| 232 | |
| 233 | func TestNewAliasUnsetCommand_Structure(t *testing.T) { |
| 234 | cmd := NewAliasUnsetCommand() |
| 235 | |
| 236 | assert.NotNil(t, cmd) |
| 237 | assert.Equal(t, "unset <alias>", cmd.Use) |
| 238 | assert.Equal(t, "Unset the alias", cmd.Short) |
| 239 | assert.Equal(t, "Unset the alias", cmd.Long) |
| 240 | assert.NotNil(t, cmd.Run) |
| 241 | } |
| 242 | |
| 243 | func TestNewAliasUnsetCommand_ArgsValidation(t *testing.T) { |
| 244 | cmd := NewAliasUnsetCommand() |
nothing calls this directly
no test coverage detected