(t *testing.T)
| 277 | } |
| 278 | |
| 279 | func TestNewAliasSetCommand_DefaultTargetValue(t *testing.T) { |
| 280 | cmd := NewAliasSetCommand() |
| 281 | val, err := cmd.Flags().GetString("target") |
| 282 | assert.NoError(t, err) |
| 283 | assert.Equal(t, "", val) |
| 284 | } |
| 285 | |
| 286 | func TestNewAliasListCommand_NoArgs(t *testing.T) { |
| 287 | cmd := NewAliasListCommand() |
nothing calls this directly
no test coverage detected