cli/commands/incident/incident_test.go

23 lines
420 B
Go

package incident
import (
"os"
"testing"
"github.com/stretchr/testify/assert"
"gitlab.com/gitlab-org/cli/commands/cmdutils"
"gitlab.com/gitlab-org/cli/test"
)
func TestIncidentCmd(t *testing.T) {
old := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
assert.Nil(t, NewCmdIncident(&cmdutils.Factory{}).Execute())
out := test.ReturnBuffer(old, r, w)
assert.Contains(t, out, "Work with GitLab incidents\n")
}