summaryrefslogtreecommitdiff
path: root/tests/test_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_commands.py')
-rw-r--r--tests/test_commands.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py
index 2136d37..62d42db 100644
--- a/tests/test_commands.py
+++ b/tests/test_commands.py
@@ -490,6 +490,11 @@ class TestRedisCommands:
# validate it was set
assert r.get('foo') == b'bar'
+ @skip_if_server_version_lt('6.0.0')
+ def test_client_getredir(self, r):
+ assert isinstance(r.client_getredir(), int)
+ assert r.client_getredir() == -1
+
def test_config_get(self, r):
data = r.config_get()
assert 'maxmemory' in data