(self, r: redis.Redis)
| 1037 | @pytest.mark.redismod |
| 1038 | @skip_if_server_version_lt("7.9.0") |
| 1039 | def test_config_get_for_modules(self, r: redis.Redis): |
| 1040 | search_module_configs = r.config_get("search-*") |
| 1041 | assert "search-timeout" in search_module_configs |
| 1042 | |
| 1043 | ts_module_configs = r.config_get("ts-*") |
| 1044 | assert "ts-retention-policy" in ts_module_configs |
| 1045 | |
| 1046 | bf_module_configs = r.config_get("bf-*") |
| 1047 | assert "bf-error-rate" in bf_module_configs |
| 1048 | |
| 1049 | cf_module_configs = r.config_get("cf-*") |
| 1050 | assert "cf-initial-size" in cf_module_configs |
| 1051 | |
| 1052 | @pytest.mark.redismod |
| 1053 | @skip_if_server_version_lt("7.9.0") |
nothing calls this directly
no test coverage detected