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.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py
index 6cb1a78..dbd0442 100644
--- a/tests/test_commands.py
+++ b/tests/test_commands.py
@@ -3671,6 +3671,14 @@ class TestRedisCommands:
assert isinstance(res, int)
assert res >= 100
+ @skip_if_server_version_lt('2.8.13')
+ def test_command(self, r):
+ res = r.command()
+ assert len(res) >= 100
+ cmds = [c[0].decode() for c in res]
+ assert 'set' in cmds
+ assert 'get' in cmds
+
@skip_if_server_version_lt('4.0.0')
@skip_if_redis_enterprise
def test_module(self, r):