]> git.saurik.com Git - redis.git/commitdiff
SORT STORE test added
authorantirez <antirez@gmail.com>
Fri, 18 Dec 2009 14:09:18 +0000 (09:09 -0500)
committerantirez <antirez@gmail.com>
Fri, 18 Dec 2009 14:09:18 +0000 (09:09 -0500)
test-redis.tcl

index c5f15bfb5444b9f04735f83898271b62c2f02f84..437af93ea3f300c566c927cca694ffcc927967d7 100644 (file)
@@ -904,6 +904,11 @@ proc main {server port} {
         $r sort tosort {BY weight_*}
     } $res
 
+    test {SORT with BY and STORE against the newly created list} {
+        $r sort tosort {BY weight_*} store sort-res
+        $r lrange sort-res 0 -1
+    } $res
+
     test {SORT direct, numeric, against the newly created list} {
         $r sort tosort
     } [lsort -integer $res]