(self, r)
| 8026 | |
| 8027 | @skip_if_server_version_lt("4.0.0") |
| 8028 | def test_memory_usage(self, r): |
| 8029 | r.set("foo", "bar") |
| 8030 | assert isinstance(r.memory_usage("foo"), int) |
| 8031 | |
| 8032 | @skip_if_server_version_lt("7.0.0") |
| 8033 | def test_latency_histogram_not_implemented(self, r: redis.Redis): |
nothing calls this directly
no test coverage detected