(self, r)
| 3294 | |
| 3295 | @pytest.mark.onlynoncluster |
| 3296 | def test_brpoplpush_empty_string(self, r): |
| 3297 | r.rpush("a", "") |
| 3298 | assert r.brpoplpush("a", "b") == b"" |
| 3299 | |
| 3300 | @pytest.mark.onlynoncluster |
| 3301 | @skip_if_server_version_lt("7.0.0") |
nothing calls this directly
no test coverage detected