From: antirez Date: Fri, 18 Dec 2009 14:09:18 +0000 (-0500) Subject: SORT STORE test added X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/5384a2d82e71717f0d47ce0c90caedaa27b16ad3?ds=inline SORT STORE test added --- diff --git a/test-redis.tcl b/test-redis.tcl index c5f15bfb..437af93e 100644 --- a/test-redis.tcl +++ b/test-redis.tcl @@ -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]