1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/cmd/cloudFoundryDeploy_generated_test.go
Marcus Holl e41e43611b
cloud foundry deploy go (#1743)
Provide cloudFoundryDeploy step in GO layer.

Groovy part untouched. Groovy-Stub needs to be provided later (with a feature toggle in order to be able to switch back)

Co-authored-by: Stephan Aßmus <stephan.assmus@sap.com>
2020-07-31 12:38:00 +02:00

17 lines
337 B
Go

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