diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-09-25 14:46:36 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-09-25 14:46:36 +0200 |
commit | 664927b5257fdaf26f24063edb1f41c407805ed8 (patch) | |
tree | ec9c7ddaeb2cc12fc4dafbff8cf8baebe1fff497 /test/lisp/custom-tests.el | |
parent | 79762ffa618ba0f0b8b4483c1cca8ccb1aab2606 (diff) | |
download | emacs-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.el | 5 |
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 |