skipIfRedisBelow84 checks if Redis version is below 8.4 and skips the test if so
(t *testing.T)
| 23 | |
| 24 | // skipIfRedisBelow84 checks if Redis version is below 8.4 and skips the test if so |
| 25 | func skipIfRedisBelow84(t *testing.T) { |
| 26 | if RedisVersion < 8.4 { |
| 27 | t.Skipf("Skipping test: Redis version %.1f < 8.4 (DIGEST command requires Redis 8.4+)", RedisVersion) |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | // TestDigestBasic validates that the Digest command returns a uint64 value |
| 32 | func TestDigestBasic(t *testing.T) { |
no outgoing calls
no test coverage detected