mirror of
http://github.com/valkey-io/valkey
synced 2024-11-23 03:33:28 +00:00
Added regression tests for issue #209
This commit is contained in:
parent
07ac2daaaa
commit
674df1eef5
@ -125,11 +125,32 @@ start_server {tags {"cas"}} {
|
||||
test {WATCH will not consider touched expired keys} {
|
||||
r del x
|
||||
r set x foo
|
||||
r expire x 2
|
||||
r expire x 1
|
||||
r watch x
|
||||
after 3000
|
||||
after 1100
|
||||
r multi
|
||||
r ping
|
||||
r exec
|
||||
} {PONG}
|
||||
|
||||
test {DISCARD should clear the WATCH dirty flag on the client} {
|
||||
r watch x
|
||||
r set x 10
|
||||
r multi
|
||||
r discard
|
||||
r multi
|
||||
r incr x
|
||||
r exec
|
||||
} {11}
|
||||
|
||||
test {DISCARD should UNWATCH all the keys} {
|
||||
r watch x
|
||||
r set x 10
|
||||
r multi
|
||||
r discard
|
||||
r set x 10
|
||||
r multi
|
||||
r incr x
|
||||
r exec
|
||||
} {11}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user