aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGlenn Morris2013-08-02 18:43:30 -0700
committerGlenn Morris2013-08-02 18:43:30 -0700
commit1f21d308949823041db6f828d6c080c2a564fb05 (patch)
treeda7ab85268d71f686410f8b88fa6dfcfe95cdc6f /test
parentf3ffcd8c96c9dc7cbea1a705b31b494a94c0ecac (diff)
downloademacs-1f21d308949823041db6f828d6c080c2a564fb05.tar.gz
emacs-1f21d308949823041db6f828d6c080c2a564fb05.zip
* test/automated/core-elisp-tests.el (core-elisp-tests): Fix defcustom.
Diffstat (limited to 'test')
-rw-r--r--test/ChangeLog2
-rw-r--r--test/automated/core-elisp-tests.el4
2 files changed, 5 insertions, 1 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index 0b42f5d2be3..ae66b25897e 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,5 +1,7 @@
12013-08-03 Glenn Morris <rgm@gnu.org> 12013-08-03 Glenn Morris <rgm@gnu.org>
2 2
3 * automated/core-elisp-tests.el (core-elisp-tests): Fix defcustom.
4
3 * automated/icalendar-tests.el (icalendar-tests--test-export) 5 * automated/icalendar-tests.el (icalendar-tests--test-export)
4 (icalendar-tests--test-import): 6 (icalendar-tests--test-import):
5 Use getenv/setenv rather than set-time-zone-rule. 7 Use getenv/setenv rather than set-time-zone-rule.
diff --git a/test/automated/core-elisp-tests.el b/test/automated/core-elisp-tests.el
index 809be10bc02..bb76ee25c77 100644
--- a/test/automated/core-elisp-tests.el
+++ b/test/automated/core-elisp-tests.el
@@ -31,7 +31,9 @@
31 ;; is properly initialized. 31 ;; is properly initialized.
32 (should (equal (list (let ((c-e-x 1)) (defvar c-e-x 2) c-e-x) c-e-x) 32 (should (equal (list (let ((c-e-x 1)) (defvar c-e-x 2) c-e-x) c-e-x)
33 '(1 2))) 33 '(1 2)))
34 (should (equal (list (let ((c-e-x 1)) (defcustom c-e-x 2) c-e-x) c-e-x) 34 (should (equal (list (let ((c-e-x 1))
35 (defcustom c-e-x "doc" 2 :group 'blah) c-e-x)
36 c-e-x)
35 '(1 2))))) 37 '(1 2)))))
36 38
37(provide 'core-elisp-tests) 39(provide 'core-elisp-tests)