mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
4f4e667797
* add ascAppUpload step add step that uploads an app binary to Application Support Center (ASC) * re-run go generate * fix typo in CODEOWNERS * Update CODEOWNERS
18 lines
333 B
Go
18 lines
333 B
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAscAppUploadCommand(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
testCmd := AscAppUploadCommand()
|
|
|
|
// only high level testing performed - details are tested in step generation procedure
|
|
assert.Equal(t, "ascAppUpload", testCmd.Use, "command name incorrect")
|
|
|
|
}
|