summaryrefslogtreecommitdiff
path: root/test/lisp/emacs-lisp/cl-macs-tests.el
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2021-03-25 16:29:07 +0100
committerAndrea Corallo <akrl@sdf.org>2021-03-25 16:29:07 +0100
commitc6c7b30e4b46bf0c8ac5e77546d3938e79f14d56 (patch)
tree77064f18e9e3b324050ff817f16d7bdb917b0514 /test/lisp/emacs-lisp/cl-macs-tests.el
parent92914ade6d3c74ab0a1a7b3820e4707fb0679977 (diff)
parent52a74604160387230c104e3305a5e08fa8c3fdf6 (diff)
downloademacs-c6c7b30e4b46bf0c8ac5e77546d3938e79f14d56.tar.gz
emacs-c6c7b30e4b46bf0c8ac5e77546d3938e79f14d56.tar.bz2
emacs-c6c7b30e4b46bf0c8ac5e77546d3938e79f14d56.zip
Merge remote-tracking branch 'savannah/master' into native-comp
Diffstat (limited to 'test/lisp/emacs-lisp/cl-macs-tests.el')
-rw-r--r--test/lisp/emacs-lisp/cl-macs-tests.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/lisp/emacs-lisp/cl-macs-tests.el b/test/lisp/emacs-lisp/cl-macs-tests.el
index df1d26a074e..dd6487603d3 100644
--- a/test/lisp/emacs-lisp/cl-macs-tests.el
+++ b/test/lisp/emacs-lisp/cl-macs-tests.el
@@ -648,4 +648,9 @@ collection clause."
#'len))
(`(function (lambda (,_ ,_) . ,_)) t))))
+(ert-deftest cl-macs--progv ()
+ (should (= (cl-progv '(test test) '(1 2) test) 2))
+ (should (equal (cl-progv '(test1 test2) '(1 2) (list test1 test2))
+ '(1 2))))
+
;;; cl-macs-tests.el ends here