mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
fb4cfd84ec
With the step gctsCreateRepository it is possible to create a local gCTS repository on an ABAP server Co-authored-by: Marcus Holl <marcus.holl@sap.com>
17 lines
343 B
Go
17 lines
343 B
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGctsCreateRepositoryCommand(t *testing.T) {
|
|
|
|
testCmd := GctsCreateRepositoryCommand()
|
|
|
|
// only high level testing performed - details are tested in step generation procudure
|
|
assert.Equal(t, "gctsCreateRepository", testCmd.Use, "command name incorrect")
|
|
|
|
}
|