summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/015/comb.tl10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/015/comb.tl b/tests/015/comb.tl
index 9973e94d..70aa9dd3 100644
--- a/tests/015/comb.tl
+++ b/tests/015/comb.tl
@@ -441,3 +441,13 @@
(rperm "a".."c" 2) (("a" "a") ("a" "b") ("a" "c")
("b" "a") ("b" "b") ("b" "c")
("c" "a") ("c" "b") ("c" "c")))
+
+(mtest
+ (perm '(1 2 3) 0) (nil)
+ (rperm '(1 2 3) 0) (nil)
+ (comb '(1 2 3) 0) (nil)
+ (rcomb '(1 2 3) 0) (nil)
+ (perm 1..4 0) (nil)
+ (rperm 1..4 0) (nil)
+ (comb 1..4 0) (nil)
+ (rcomb 1..4 0) (nil))