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