aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/lisp/emacs-lisp/cl-extra-tests.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/lisp/emacs-lisp/cl-extra-tests.el b/test/lisp/emacs-lisp/cl-extra-tests.el
index 2d20ba75d29..7546c149377 100644
--- a/test/lisp/emacs-lisp/cl-extra-tests.el
+++ b/test/lisp/emacs-lisp/cl-extra-tests.el
@@ -99,4 +99,12 @@
99 ;; Test for Bug#33731. 99 ;; Test for Bug#33731.
100 (should-not (eq s (cl-make-random-state s))))) 100 (should-not (eq s (cl-make-random-state s)))))
101 101
102(ert-deftest cl-concatenate ()
103 (should (equal (cl-concatenate 'list '(1 2 3) '(4 5 6))
104 '(1 2 3 4 5 6)))
105 (should (equal (cl-concatenate 'vector [1 2 3] [4 5 6])
106 [1 2 3 4 5 6]))
107 (should (equal (cl-concatenate 'string "123" "456")
108 "123456")))
109
102;;; cl-extra-tests.el ends here 110;;; cl-extra-tests.el ends here