(self, r: redis.Redis)
| 204 | |
| 205 | @skip_if_server_version_lt(REDIS_6_VERSION) |
| 206 | async def test_acl_genpass(self, r: redis.Redis): |
| 207 | password = await r.acl_genpass() |
| 208 | assert isinstance(password, (str, bytes)) |
| 209 | |
| 210 | @skip_if_server_version_lt("7.0.0") |
| 211 | async def test_acl_getuser_setuser(self, r_teardown): |
nothing calls this directly
no test coverage detected