1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/cmd/vaultRotateSecretId_generated_test.go
Kevin Stiehl dfab156427
Feature/approle secret id rotation (#2311)
* add new step vault secret

* add debug log

Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com>
2020-11-17 13:49:31 +01:00

17 lines
340 B
Go

package cmd
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestVaultRotateSecretIdCommand(t *testing.T) {
testCmd := VaultRotateSecretIdCommand()
// only high level testing performed - details are tested in step generation procedure
assert.Equal(t, "vaultRotateSecretId", testCmd.Use, "command name incorrect")
}