Files
atlantis/server/events/help_executor_test.go
2017-10-31 20:07:41 -07:00

16 lines
292 B
Go

package events_test
import (
"testing"
"github.com/hootsuite/atlantis/server/events"
. "github.com/hootsuite/atlantis/testing"
)
func TestExecute(t *testing.T) {
h := events.HelpExecutor{}
ctx := events.CommandContext{}
r := h.Execute(&ctx)
Equals(t, events.CommandResponse{}, r)
}