1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-08 15:35:02 +00:00

* test/automated/core-elisp-tests.el (core-elisp-tests): Fix defcustom.

This commit is contained in:
Glenn Morris 2013-08-02 18:43:30 -07:00
parent f3ffcd8c96
commit 1f21d30894
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2013-08-03 Glenn Morris <rgm@gnu.org>
* automated/core-elisp-tests.el (core-elisp-tests): Fix defcustom.
* automated/icalendar-tests.el (icalendar-tests--test-export)
(icalendar-tests--test-import):
Use getenv/setenv rather than set-time-zone-rule.

View File

@ -31,7 +31,9 @@
;; is properly initialized.
(should (equal (list (let ((c-e-x 1)) (defvar c-e-x 2) c-e-x) c-e-x)
'(1 2)))
(should (equal (list (let ((c-e-x 1)) (defcustom c-e-x 2) c-e-x) c-e-x)
(should (equal (list (let ((c-e-x 1))
(defcustom c-e-x "doc" 2 :group 'blah) c-e-x)
c-e-x)
'(1 2)))))
(provide 'core-elisp-tests)