diff options
author | Glenn Morris <rgm@gnu.org> | 2014-05-05 17:33:07 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-05-05 17:33:07 -0400 |
commit | 6da8d069757fd26ee537704a9f0dea24dc5e00b8 (patch) | |
tree | ced4c72417f00aac34d6e40a8da67cfe07acf1ef /test/automated/help-fns.el | |
parent | e6025d7240197bfd47cf649c5976533da6869a6e (diff) | |
download | emacs-6da8d069757fd26ee537704a9f0dea24dc5e00b8.tar.gz emacs-6da8d069757fd26ee537704a9f0dea24dc5e00b8.tar.bz2 emacs-6da8d069757fd26ee537704a9f0dea24dc5e00b8.zip |
* lisp/help-fns.el (describe-function-1): Test for an autoload before a macro
since `macrop' works on autoloads.
* test/automated/help-fns.el: New file.
Fixes: debbugs:17410
Diffstat (limited to 'test/automated/help-fns.el')
-rw-r--r-- | test/automated/help-fns.el | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/test/automated/help-fns.el b/test/automated/help-fns.el new file mode 100644 index 00000000000..153de7f9e30 --- /dev/null +++ b/test/automated/help-fns.el @@ -0,0 +1,37 @@ +;;; help-fns.el --- tests for help-fns.el + +;; Copyright (C) 2014 Free Software Foundation, Inc. + +;; Maintainer: emacs-devel@gnu.org + +;; This file is part of GNU Emacs. + +;; GNU Emacs is free software: you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; GNU Emacs is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. + +;;; Commentary: + +;;; Code: + +(require 'ert) + +(autoload 'help-fns-test--macro "help-fns" nil nil t) + +(ert-deftest help-fns-test-bug17410 () + "Test for http://debbugs.gnu.org/17410 ." + (describe-function 'help-fns-test--macro) + (with-current-buffer "*Help*" + (goto-char (point-min)) + (should (search-forward "autoloaded Lisp macro" (line-end-position))))) + +;;; help-fns.el ends here |