1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/githubCreatePullRequest_generated_test.go
Oliver Nocon 7597c7d228
Add step githubCreatePullRequest (#1068)
* Add step githubCreatePullRequest
2019-12-16 16:34:12 +00:00

17 lines
352 B
Go

package cmd
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGithubCreatePullRequestCommand(t *testing.T) {
testCmd := GithubCreatePullRequestCommand()
// only high level testing performed - details are tested in step generation procudure
assert.Equal(t, "githubCreatePullRequest", testCmd.Use, "command name incorrect")
}