mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
c283b9319d
* IntegrationArtifactUnDeploy Command * formatting fix * Code Review Fixex * Code Review Fixes * remove unused code * Formating fixes * formatting fixes * formatting fix Co-authored-by: Oliver Feldmann <oliver.feldmann@sap.com>
18 lines
378 B
Go
18 lines
378 B
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestIntegrationArtifactUnDeployCommand(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
testCmd := IntegrationArtifactUnDeployCommand()
|
|
|
|
// only high level testing performed - details are tested in step generation procedure
|
|
assert.Equal(t, "integrationArtifactUnDeploy", testCmd.Use, "command name incorrect")
|
|
|
|
}
|