1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/terraformExecute_generated_test.go
Kevin Stiehl fe6ea643fa
Add terraformExecuteStep (#2679)
* Add terraformExectueStep

* Update terraformExecute.go

* fmt

Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com>
2021-03-29 16:22:23 +02:00

18 lines
345 B
Go

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