18 lines
328 B
Go
18 lines
328 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)
|
||
|
assert.Equal(t, 200, w.Code)
|
||
|
|
||
|
w = lapi.RecordResponse("POST", "/v1/heartbeat", emptyBody)
|
||
|
assert.Equal(t, 405, w.Code)
|
||
|
}
|