1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/xsDeploy_generated_test.go
Marcus Holl 9ee2926018
xs deploy go (#931)
introduce xs deploy
2019-12-05 14:22:38 +01:00

17 lines
307 B
Go

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