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.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py
index 0912161..f4ffb63 100644
--- a/tests/test_commands.py
+++ b/tests/test_commands.py
@@ -696,6 +696,12 @@ class TestRedisCommands:
assert isinstance(r.role()[2], list)
@pytest.mark.onlynoncluster
+ def test_select(self, r):
+ assert r.select(5)
+ assert r.select(2)
+ assert r.select(9)
+
+ @pytest.mark.onlynoncluster
def test_slowlog_get(self, r, slowlog):
assert r.slowlog_reset()
unicode_string = chr(3456) + "abcd" + chr(3421)