mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
41abec6b10
* Fix typo in generator code * Fix typo in generated code
17 lines
340 B
Go
17 lines
340 B
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGctsCloneRepositoryCommand(t *testing.T) {
|
|
|
|
testCmd := GctsCloneRepositoryCommand()
|
|
|
|
// only high level testing performed - details are tested in step generation procedure
|
|
assert.Equal(t, "gctsCloneRepository", testCmd.Use, "command name incorrect")
|
|
|
|
}
|