(t *testing.T)
| 41 | } |
| 42 | |
| 43 | func TestSecretsCommandHelp(t *testing.T) { |
| 44 | cmd := NewSecretsCommand() |
| 45 | |
| 46 | // Verify RunE returns help when command is run without subcommand |
| 47 | err := cmd.RunE(cmd, []string{}) |
| 48 | assert.NoError(t, err, "Running secrets command without subcommand should show help without error") |
| 49 | } |
| 50 | |
| 51 | func TestSecretsCommandStructure(t *testing.T) { |
| 52 | tests := []struct { |
nothing calls this directly
no test coverage detected