1 ;;; add-log-tests.el --- Test suite for add-log.
3 ;; Copyright (C) 2013-2015 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/>.
28 (defmacro add-log-current-defun-deftest
(name doc major-mode
29 content marker expected-defun
)
30 "Generate an ert test for mode-own `add-log-current-defun-function'.
31 Run `add-log-current-defun' at the point where MARKER specifies in a
32 buffer which content is CONTENT under MAJOR-MODE. Then it compares the
33 result with EXPECTED-DEFUN."
34 (let ((xname (intern (concat "add-log-current-defun-test-"
37 `(ert-deftest ,xname
()
41 (goto-char (point-min))
42 (funcall ',major-mode
)
43 (should (equal (when (search-forward ,marker nil t
)
44 (replace-match "" nil t
)
45 (add-log-current-defun))
48 (add-log-current-defun-deftest
50 "Test sh-current-defun-name can find function."
57 (add-log-current-defun-deftest
59 "Test sh-current-defun-name can find function."
66 (add-log-current-defun-deftest
68 "Test sh-current-defun-name can find function."
75 (add-log-current-defun-deftest
77 "Test sh-current-defun-name can find variable definition."
83 (provide 'add-log-tests
)
85 ;;; add-log-tests.el ends here