crowdsec/pkg/apiserver/heartbeat_test.go

18 lines
328 B
Go
Raw Normal View History

package apiserver
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestHeartBeat(t *testing.T) {
lapi := SetupLAPITest(t)
w := lapi.RecordResponse("GET", "/v1/heartbeat", emptyBody)
assert.Equal(t, 200, w.Code)
w = lapi.RecordResponse("POST", "/v1/heartbeat", emptyBody)
assert.Equal(t, 405, w.Code)
}