The redisServerBin and redisServerConf are no longer present in main_test.go, but they are mentioned in the README.
Run the test
go-redis will start a redis-server and run the test cases.
The paths of redis-server bin file and redis config file are defined in main_test.go:
var (
redisServerBin, _ = filepath.Abs(filepath.Join("testdata", "redis", "src", "redis-server")) // no longer present in main_test.go
redisServerConf, _ = filepath.Abs(filepath.Join("testdata", "redis", "redis.conf")) // no longer present in main_test.go
)