(self, r)
| 1617 | @pytest.mark.onlynoncluster |
| 1618 | @skip_if_server_version_lt("2.6.0") |
| 1619 | def test_bitop_not_empty_string(self, r): |
| 1620 | r["a"] = "" |
| 1621 | r.bitop("not", "r", "a") |
| 1622 | assert r.get("r") is None |
| 1623 | |
| 1624 | @pytest.mark.onlynoncluster |
| 1625 | @skip_if_server_version_lt("2.6.0") |