summary refs log tree commit diff
path: root/tests/test.mew
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test.mew')
-rw-r--r--tests/test.mew11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test.mew b/tests/test.mew
index d2eacbd..96f0764 100644
--- a/tests/test.mew
+++ b/tests/test.mew
@@ -718,3 +718,14 @@
   (test 42 (imp #t #t #t 42))
   (test 42 (imp 39 40 41 42))
   (test #t (imp 39 #f 41 42)))
+
+(test-group "repeat"
+  (test '(1 2 3 1 2 3 1 2 3 1 2 3) (repeat '(1 2 3) 4))
+  (test #(1 2 3 1 2 3 1 2 3 1 2 3) (repeat #(1 2 3) 4))
+  (test "123123123123" (repeat "123" 4))
+  (test "xxxx" (repeat #\x 4))
+
+  (test '() (repeat '(1 2 3) 0))
+  (test #() (repeat #(1 2 3) 0))
+  (test "" (repeat "123" 0))
+  (test "" (repeat #\x 0)))