(self, r)
| 2408 | @pytest.mark.onlynoncluster |
| 2409 | @skip_if_server_version_lt("6.2.0") |
| 2410 | def test_blmove(self, r): |
| 2411 | r.rpush("a", "one", "two", "three", "four") |
| 2412 | assert r.blmove("a", "b", 5) |
| 2413 | assert r.blmove("a", "b", 1, "RIGHT", "LEFT") |
| 2414 | |
| 2415 | @pytest.mark.onlynoncluster |
| 2416 | def test_mset(self, r): |