diff options
author | Ted Zlatanov <tzz@lifelogs.com> | 2020-08-22 18:42:36 -0400 |
---|---|---|
committer | Ted Zlatanov <tzz@lifelogs.com> | 2020-11-29 12:09:48 +0000 |
commit | 8ef7978028c3edaf47fb40a84fee576c4355753f (patch) | |
tree | dd8008011cc30fadaf0e0ae7fe669cac75cebff3 /test/lisp/use-package | |
parent | 99643f8873e4181df7c1f61fa2bfb7d3b432b9db (diff) | |
download | emacs-8ef7978028c3edaf47fb40a84fee576c4355753f.tar.gz emacs-8ef7978028c3edaf47fb40a84fee576c4355753f.tar.bz2 emacs-8ef7978028c3edaf47fb40a84fee576c4355753f.zip |
set saved-variable-comment from :custom
GitHub-reference: https://github.com/jwiegley/use-package/issues/861
Diffstat (limited to 'test/lisp/use-package')
-rw-r--r-- | test/lisp/use-package/use-package-tests.el | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/lisp/use-package/use-package-tests.el b/test/lisp/use-package/use-package-tests.el index 42bf07453b4..38c2025cac6 100644 --- a/test/lisp/use-package/use-package-tests.el +++ b/test/lisp/use-package/use-package-tests.el @@ -1138,6 +1138,19 @@ (get 'foo 'custom-set) (function set-default)) 'foo bar) + (set 'foo 'saved-variable-comment "Customized with use-package foo") + (require 'foo nil nil)))) + +(ert-deftest use-package-test/:custom-with-comment1 () + (match-expansion + (use-package foo :custom (foo bar "commented")) + `(progn + (funcall + (or + (get 'foo 'custom-set) + (function set-default)) + 'foo bar) + (set 'foo 'saved-variable-comment "commented") (require 'foo nil nil)))) (ert-deftest use-package-test/:custom-face-1 () |