MCPcopy
hub / github.com/redis/redis-py / test_lmove

Method test_lmove

tests/test_commands.py:2403–2406  ·  view source on GitHub ↗
(self, r)

Source from the content-addressed store, hash-verified

2401 @pytest.mark.onlynoncluster
2402 @skip_if_server_version_lt("6.2.0")
2403 def test_lmove(self, r):
2404 r.rpush("a", "one", "two", "three", "four")
2405 assert r.lmove("a", "b")
2406 assert r.lmove("a", "b", "right", "left")
2407
2408 @pytest.mark.onlynoncluster
2409 @skip_if_server_version_lt("6.2.0")

Callers

nothing calls this directly

Calls 2

rpushMethod · 0.80
lmoveMethod · 0.80

Tested by

no test coverage detected