mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
18 lines
411 B
Go
18 lines
411 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestIntegrationArtifactUpdateConfigurationCommand(t *testing.T) {
|
||
|
t.Parallel()
|
||
|
|
||
|
testCmd := IntegrationArtifactUpdateConfigurationCommand()
|
||
|
|
||
|
// only high level testing performed - details are tested in step generation procedure
|
||
|
assert.Equal(t, "integrationArtifactUpdateConfiguration", testCmd.Use, "command name incorrect")
|
||
|
|
||
|
}
|