(self, r)
| 996 | r.hello() |
| 997 | |
| 998 | def test_config_get(self, r): |
| 999 | data = r.config_get() |
| 1000 | assert len(data.keys()) > 10 |
| 1001 | # # assert 'maxmemory' in data |
| 1002 | # assert data['maxmemory'].isdigit() |
| 1003 | |
| 1004 | @skip_if_server_version_lt("7.0.0") |
| 1005 | def test_config_get_multi_params(self, r: redis.Redis): |
nothing calls this directly
no test coverage detected