1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/kanikoExecute_generated_test.go
Oliver Nocon 111e4de8c3
kanikoExecute - golang version (#1765)
* kanikoExecute golang version

* update entrypoint

* update entrypoint

* update entrypoint

* update entrypoint

* update entrypoint

* add command

* include PR feedback

* remove trailing spaces

* remove defaults for certificates

* Update generated file
2020-07-10 08:07:59 +02:00

17 lines
322 B
Go

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