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
Oliver Feldmann 41abec6b10
Fix generator typo (#2008)
* Fix typo in generator code

* Fix typo in generated code
2020-09-10 14:37: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 procedure
assert.Equal(t, "jsonApplyPatch", testCmd.Use, "command name incorrect")
}