Commit 674df1ee authored by antirez's avatar antirez
Browse files

Added regression tests for issue #209

parent 07ac2daa
...@@ -125,11 +125,32 @@ start_server {tags {"cas"}} { ...@@ -125,11 +125,32 @@ start_server {tags {"cas"}} {
test {WATCH will not consider touched expired keys} { test {WATCH will not consider touched expired keys} {
r del x r del x
r set x foo r set x foo
r expire x 2 r expire x 1
r watch x r watch x
after 3000 after 1100
r multi r multi
r ping r ping
r exec r exec
} {PONG} } {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}
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment