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.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py
index aa6745b..77e2e72 100644
--- a/tests/test_commands.py
+++ b/tests/test_commands.py
@@ -4527,6 +4527,16 @@ class TestRedisCommands:
with pytest.raises(NotImplementedError):
r.latency_histogram()
+ @skip_if_server_version_lt("7.0.0")
+ def test_latency_graph_not_implemented(self, r: redis.Redis):
+ with pytest.raises(NotImplementedError):
+ r.latency_graph()
+
+ @skip_if_server_version_lt("7.0.0")
+ def test_latency_doctor_not_implemented(self, r: redis.Redis):
+ with pytest.raises(NotImplementedError):
+ r.latency_doctor()
+
@pytest.mark.onlynoncluster
@skip_if_server_version_lt("4.0.0")
@skip_if_redis_enterprise()