Files
kratos-bootstrap/registry/kubernetes/client_test.go
2024-05-06 12:05:57 +08:00

14 lines
260 B
Go

package kubernetes
import (
"github.com/stretchr/testify/assert"
conf "github.com/tx7do/kratos-bootstrap/api/gen/go/conf/v1"
"testing"
)
func TestNewKubernetesRegistry(t *testing.T) {
var cfg conf.Registry
reg := NewRegistry(&cfg)
assert.Nil(t, reg)
}