Files
atlantis/server/events/help_executor_test.go
Luke Kysow c59b422949 Fmt
2017-10-18 06:44:44 -07:00

16 lines
297 B
Go

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