Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / test / automated / subword-tests.el
blob3b37bc84886a26c5646bc6c5737d1c8e5ae2cfd7
1 ;;; subword-tests.el --- Testing the subword rules
3 ;; Copyright (C) 2011-2014 Free Software Foundation, Inc.
5 ;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
6 ;; Keywords:
8 ;; This program is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
21 ;;; Commentary:
25 ;;; Code:
27 (require 'ert)
28 (require 'subword)
30 (defconst subword-tests-strings
31 '("ABC^" ;;Bug#13758
32 "ABC^ ABC^Foo^ ABC^-Foo^ toto^ ABC^"))
34 (ert-deftest subword-tests ()
35 "Test the `subword-mode' rules."
36 (with-temp-buffer
37 (dolist (str subword-tests-strings)
38 (erase-buffer)
39 (insert str)
40 (goto-char (point-min))
41 (while (search-forward "^" nil t)
42 (replace-match ""))
43 (goto-char (point-min))
44 (while (not (eobp))
45 (subword-forward 1)
46 (insert "^"))
47 (should (equal (buffer-string) str)))))
49 (provide 'subword-tests)
50 ;;; subword-tests.el ends here