mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-29 20:08:31 +00:00
16 lines
292 B
Go
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)
|
|
}
|