(version float64, msg string)
| 88 | } |
| 89 | |
| 90 | func SkipAfterRedisVersion(version float64, msg string) { |
| 91 | if RedisVersion > version { |
| 92 | Skip(fmt.Sprintf("(redis version > %f) %s", version, msg)) |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | var _ = BeforeSuite(func() { |
| 97 | addr := os.Getenv("REDIS_PORT") |
no outgoing calls
no test coverage detected