21 lines
370 B
Go
21 lines
370 B
Go
package health_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"fiskerinc.com/modules/health"
|
|
"fiskerinc.com/modules/testhelper"
|
|
)
|
|
|
|
func TestHTTPCheck(t *testing.T) {
|
|
check := health.NewHTTPCheck(health.HTTPConfig{
|
|
URL: "http://0.0.0.0:9876",
|
|
RequestTimeout: time.Second,
|
|
})
|
|
|
|
err := check(context.Background())
|
|
testhelper.Error(t, "has error", err)
|
|
}
|