1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/shellExecute_generated_test.go
Eugene Kortelyov d395b362ed
feat: step to execute shell scripts (#3196)
* shell executor initial commit

* functionality updates

* changes in logging implementation (using internal logging), changes in execution

* remove unused field

* remove duplicate from code

* update vault flow and remove unnecessary params

* update generated step file

Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com>
2021-11-19 10:05:39 +01:00

18 lines
333 B
Go

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