package redisrpc
|
|
|
|
import (
|
|
// "strconv"
|
|
"testing"
|
|
// "tgo/helper"
|
|
)
|
|
|
|
func Test_LLpush(t *testing.T) {
|
|
|
|
// val := map[string]interface{}{"id": "123", "name": "这是一个测试", "dis": "xxx"}
|
|
|
|
reply, err := LLen("testing")
|
|
|
|
t.Log(reply)
|
|
t.Log(err)
|
|
|
|
}
|