1 ;;; add-log-tests.el --- Test suite for add-log.
3 ;; Copyright (C) 2013 Free Software Foundation, Inc.
5 ;; Author: Masatake YAMATO <yamato@redhat.com>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 (defmacro add-log-current-defun-deftest
(name doc major-mode
28 content marker expected-defun
)
29 "Generate an ert test for mode-own `add-log-current-defun-function'.
30 Run `add-log-current-defun' at the point where MARKER specifies in a
31 buffer which content is CONTENT under MAJOR-MODE. Then it compares the
32 result with EXPECTED-DEFUN."
33 (let ((xname (intern (concat "add-log-current-defun-test-"
36 `(ert-deftest ,xname
()
40 (goto-char (point-min))
41 (funcall ',major-mode
)
42 (should (equal (when (search-forward ,marker nil t
)
43 (replace-match "" nil t
)
44 (add-log-current-defun))
47 (add-log-current-defun-deftest
49 "Test sh-current-defun-name can find function."
56 (add-log-current-defun-deftest
58 "Test sh-current-defun-name can find function."
65 (add-log-current-defun-deftest
67 "Test sh-current-defun-name can find function."
74 (add-log-current-defun-deftest
76 "Test sh-current-defun-name can find variable definition."
82 (provide 'add-log-tests
)
84 ;;; add-log-tests.el ends here