1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/githubPublishRelease_generated_test.go

21 lines
389 B
Go
Raw Normal View History

//go:build unit
// +build unit
2019-11-04 17:07:30 +02:00
package cmd
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGithubPublishReleaseCommand(t *testing.T) {
t.Parallel()
2019-11-04 17:07:30 +02:00
testCmd := GithubPublishReleaseCommand()
// only high level testing performed - details are tested in step generation procedure
2019-11-04 17:07:30 +02:00
assert.Equal(t, "githubPublishRelease", testCmd.Use, "command name incorrect")
}