(version float64, msg string)
| 82 | var RedisVersion float64 = 8.4 |
| 83 | |
| 84 | func SkipBeforeRedisVersion(version float64, msg string) { |
| 85 | if RedisVersion < version { |
| 86 | Skip(fmt.Sprintf("(redis version < %f) %s", version, msg)) |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | func SkipAfterRedisVersion(version float64, msg string) { |
| 91 | if RedisVersion > version { |
no outgoing calls
no test coverage detected