Files
atlantis/server/events/help_executor_test.go
2018-02-18 21:28:18 -08:00

16 lines
296 B
Go

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