mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-08-04 17:48:38 +00:00
16 lines
290 B
Go
16 lines
290 B
Go
package server_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hootsuite/atlantis/server"
|
|
. "github.com/hootsuite/atlantis/testing_util"
|
|
)
|
|
|
|
func TestExecute(t *testing.T) {
|
|
h := server.HelpExecutor{}
|
|
ctx := server.CommandContext{}
|
|
r := h.Execute(&ctx)
|
|
Equals(t, server.CommandResponse{}, r)
|
|
}
|