1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/jsonApplyPatch_generated_test.go
Daniel Kurzynski be01dd3869
Add schema patch step in go (#1683)
Co-authored-by: Stephan Aßmus <stephan.assmus@sap.com>
2020-06-18 14:50:46 +02:00

17 lines
325 B
Go

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