From f54c299091e94ba69d298c1d782589c1e9903b9c Mon Sep 17 00:00:00 2001 From: BigCat Date: Mon, 19 Dec 2011 19:45:57 +0800 Subject: [PATCH 1/1] I found that no test will fail even if I broke the `SORT x LIMIT y z` code. Added a naive unit test for SORT-LIMIT command. --- tests/unit/sort.tcl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/unit/sort.tcl b/tests/unit/sort.tcl index e474e50c..d8f93e83 100644 --- a/tests/unit/sort.tcl +++ b/tests/unit/sort.tcl @@ -50,6 +50,10 @@ start_server { assert_equal $result [r sort tosort BY weight_*] } + test "$title: SORT BY key with limit" { + assert_equal [lrange $result 5 9] [r sort tosort BY weight_* LIMIT 5 5] + } + test "$title: SORT BY hash field" { assert_equal $result [r sort tosort BY wobj_*->weight] } -- 2.45.2