18 lines
354 B
Go
18 lines
354 B
Go
package redis_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
redislib "gateway/internal/library/redis"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/zeromicro/go-zero/core/stores/redis"
|
|
)
|
|
|
|
func TestNewClient_EmptyHost(t *testing.T) {
|
|
c, err := redislib.NewClient(redis.RedisConf{})
|
|
require.NoError(t, err)
|
|
assert.Nil(t, c)
|
|
}
|