]> git.saurik.com Git - redis.git/commitdiff
added tests for vararg DEL
authorantirez <antirez@gmail.com>
Sat, 9 May 2009 10:32:29 +0000 (12:32 +0200)
committerantirez <antirez@gmail.com>
Sat, 9 May 2009 10:32:29 +0000 (12:32 +0200)
test-redis.tcl

index 6eb1468cfb937fbe15a2285c55cf832168c6f8e9..9e69acda0bc7e058cd9db0da059798572b69a71e 100644 (file)
@@ -65,6 +65,13 @@ proc main {server port} {
         $r get x
     } {}
 
+    test {Vararg DEL} {
+        $r set foo1 a
+        $r set foo2 b
+        $r set foo3 c
+        list [$r del foo1 foo2 foo3 foo4] [$r mget foo1 foo2 foo3]
+    } {3 {{} {} {}}}
+
     test {KEYS with pattern} {
         foreach key {key_x key_y key_z foo_a foo_b foo_c} {
             $r set $key hello