mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
5856e35d50
* add step for GitHub branch protection check * add command to piper command * remove unnecessary parameter * Update resources/metadata/githubbranchprotection.yaml * Add step to set GitHub status * add groovy part * update generation & go mod tidy * update groovy tests * update github api to fix bug * add comment * go mod tidy * update naming * update docs * update docs * Update resources/metadata/githubstatus.yaml Co-authored-by: Stephan Aßmus <stephan.assmus@sap.com> * Update resources/metadata/githubstatus.yaml Co-authored-by: Stephan Aßmus <stephan.assmus@sap.com> * Update resources/metadata/githubstatus.yaml Co-authored-by: Stephan Aßmus <stephan.assmus@sap.com> * update generated files * update GitHub step order * Update interface usage * do not export interfaces * go mod tidy Co-authored-by: Sven Merk <33895725+nevskrem@users.noreply.github.com> Co-authored-by: Stephan Aßmus <stephan.assmus@sap.com>
17 lines
346 B
Go
17 lines
346 B
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGithubSetCommitStatusCommand(t *testing.T) {
|
|
|
|
testCmd := GithubSetCommitStatusCommand()
|
|
|
|
// only high level testing performed - details are tested in step generation procedure
|
|
assert.Equal(t, "githubSetCommitStatus", testCmd.Use, "command name incorrect")
|
|
|
|
}
|