mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
73ab887f25
* Add kubernetesDeploy step Co-authored-by: Sven Merk <33895725+nevskrem@users.noreply.github.com>
17 lines
331 B
Go
17 lines
331 B
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestKubernetesDeployCommand(t *testing.T) {
|
|
|
|
testCmd := KubernetesDeployCommand()
|
|
|
|
// only high level testing performed - details are tested in step generation procudure
|
|
assert.Equal(t, "kubernetesDeploy", testCmd.Use, "command name incorrect")
|
|
|
|
}
|