* test/automated/core-elisp-tests.el

(core-elisp-tests-1-defvar-in-let): Add a custom type.
This commit is contained in:
Glenn Morris 2016-01-12 20:04:49 -05:00
parent 0d7bdee577
commit 0ae1a144a8

View file

@ -32,7 +32,7 @@
(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 "doc" :group 'blah) c-e-x)
(defcustom c-e-x 2 "doc" :group 'blah :type 'integer) c-e-x)
c-e-x)
'(1 2)))))