diff options
author | Mauro Aranda <maurooaranda@gmail.com> | 2020-11-07 09:53:21 -0300 |
---|---|---|
committer | Mauro Aranda <maurooaranda@gmail.com> | 2020-11-07 09:53:21 -0300 |
commit | 423b6b62296df0558cf16f286dd268e0b49b3bce (patch) | |
tree | 7ca8b44e46340e32c198687b26f5a313c8dc7259 /test/lisp/custom-tests.el | |
parent | bc76afd355c0a6608830e2b43c8c67243aa0fa7b (diff) | |
download | emacs-423b6b62296df0558cf16f286dd268e0b49b3bce.tar.gz emacs-423b6b62296df0558cf16f286dd268e0b49b3bce.tar.bz2 emacs-423b6b62296df0558cf16f286dd268e0b49b3bce.zip |
Add test for recent change in enable-theme
* test/lisp/custom-tests.el (custom-test-enable-theme-keeps-settings):
Enabling a theme should not change the theme settings, so test for
that. See
https://lists.gnu.org/archive/html/emacs-devel/2020-11/msg00232.html
Diffstat (limited to 'test/lisp/custom-tests.el')
-rw-r--r-- | test/lisp/custom-tests.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/lisp/custom-tests.el b/test/lisp/custom-tests.el index a1451cf0ce6..7691f167738 100644 --- a/test/lisp/custom-tests.el +++ b/test/lisp/custom-tests.el @@ -156,4 +156,13 @@ (load custom-test-admin-cus-test) (should (null (cus-test-opts t)))) +(ert-deftest custom-test-enable-theme-keeps-settings () + "Test that enabling a theme doesn't change its settings." + (let* ((custom-theme-load-path `(,(ert-resource-directory))) + settings) + (load-theme 'custom--test 'no-confirm 'no-enable) + (setq settings (get 'custom--test 'theme-settings)) + (enable-theme 'custom--test) + (should (equal settings (get 'custom--test 'theme-settings))))) + ;;; custom-tests.el ends here |