]> git.saurik.com Git - redis.git/blobdiff - test-redis.tcl
Added package require Tcl 8.5 in redis.tcl so it will show a clear error when the...
[redis.git] / test-redis.tcl
index bac5350ac2eb855b9fc5f75c3b013ee65b8d841a..7f4ce9c72db5157915bc127736407dc0834a4b6c 100644 (file)
@@ -935,6 +935,15 @@ proc main {} {
         lsort [array names myset]
     } {a b c}
 
+    test {SORT ALPHA against integer encoded strings} {
+        $r del mylist
+        $r lpush mylist 2
+        $r lpush mylist 1
+        $r lpush mylist 3
+        $r lpush mylist 10
+        $r sort mylist alpha
+    } {1 10 2 3}
+
     test {Create a random list and a random set} {
         set tosort {}
         array set seenrand {}