summaryrefslogtreecommitdiff
path: root/test/lisp/custom-tests.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2020-09-25 14:46:36 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2020-09-25 14:46:36 +0200
commit664927b5257fdaf26f24063edb1f41c407805ed8 (patch)
treeec9c7ddaeb2cc12fc4dafbff8cf8baebe1fff497 /test/lisp/custom-tests.el
parent79762ffa618ba0f0b8b4483c1cca8ccb1aab2606 (diff)
downloademacs-664927b5257fdaf26f24063edb1f41c407805ed8.tar.gz
emacs-664927b5257fdaf26f24063edb1f41c407805ed8.tar.bz2
emacs-664927b5257fdaf26f24063edb1f41c407805ed8.zip
Add an expensive test for defcustom types
* admin/cus-test.el (cus-test-opts): Return the tests. * test/lisp/custom-tests.el (check-for-wrong-custom-types): Test custom types (bug#30990).
Diffstat (limited to 'test/lisp/custom-tests.el')
-rw-r--r--test/lisp/custom-tests.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/lisp/custom-tests.el b/test/lisp/custom-tests.el
index cabbf861f14..d94527b558f 100644
--- a/test/lisp/custom-tests.el
+++ b/test/lisp/custom-tests.el
@@ -147,4 +147,9 @@
(widget-apply field :value-to-internal origvalue)
"bar"))))))
+(ert-deftest check-for-wrong-custom-types ()
+ :tags '(:expensive-test)
+ (load (concat installation-directory "admin/cus-test.el"))
+ (should (null (cus-test-opts t))))
+
;;; custom-tests.el ends here