aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ChangeLog5
-rw-r--r--test/automated/cl-lib.el6
2 files changed, 11 insertions, 0 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index c87022cd948..183fb409f1f 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
12014-03-23 Daniel Colascione <dancol@dancol.org>
2
3 * automated/cl-lib.el (cl-lib-keyword-names-versus-values): New
4 test: correct parsing of keyword arguments.
5
12014-03-07 Michael Albinus <michael.albinus@gmx.de> 62014-03-07 Michael Albinus <michael.albinus@gmx.de>
2 7
3 * automated/tramp-tests.el (tramp-copy-size-limit): Declare. 8 * automated/tramp-tests.el (tramp-copy-size-limit): Declare.
diff --git a/test/automated/cl-lib.el b/test/automated/cl-lib.el
index 8b6ed6d6634..f7f4314e1cb 100644
--- a/test/automated/cl-lib.el
+++ b/test/automated/cl-lib.el
@@ -195,4 +195,10 @@
195 (should (eql (cl-mismatch "Aa" "aA") 0)) 195 (should (eql (cl-mismatch "Aa" "aA") 0))
196 (should (eql (cl-mismatch '(a b c) '(a b d)) 2))) 196 (should (eql (cl-mismatch '(a b c) '(a b d)) 2)))
197 197
198(ert-deftest cl-lib-keyword-names-versus-values ()
199 (should (equal
200 (funcall (cl-function (lambda (&key a b) (list a b)))
201 :b :a :a 42)
202 '(42 :a))))
203
198;;; cl-lib.el ends here 204;;; cl-lib.el ends here