mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-31 12:48:47 +00:00
16 lines
296 B
Go
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)
|
|
}
|