package health import "testing" func TestHealthCheck(t *testing.T) { status := "ok" if status != "ok" { t.Errorf("expected ok, got %s", status) } }