aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNoam Postavsky2016-12-20 23:02:48 -0500
committerNoam Postavsky2016-12-24 09:45:14 -0500
commitcf5417f02887d681923c7d23326916889ae4049a (patch)
tree7c9f6b8f4107520acad49ec69af1e55f72567312 /test
parent25c9cb77b4346c9912c995ca3a63fc7ab424795e (diff)
downloademacs-cf5417f02887d681923c7d23326916889ae4049a.tar.gz
emacs-cf5417f02887d681923c7d23326916889ae4049a.zip
Fix whitespace eob cleanup
* lisp/whitespace.el (whitespace-empty-at-eob-regexp): Match any number of empty lines at end of buffer. * test/lisp/whitespace-tests.el (whitespace-cleanup-eob): New test. (whitespace-tests--cleanup-string): New helper function for tests.
Diffstat (limited to 'test')
-rw-r--r--test/lisp/whitespace-tests.el52
1 files changed, 52 insertions, 0 deletions
diff --git a/test/lisp/whitespace-tests.el b/test/lisp/whitespace-tests.el
new file mode 100644
index 00000000000..ffd2e65d9ae
--- /dev/null
+++ b/test/lisp/whitespace-tests.el
@@ -0,0 +1,52 @@
1;;; whitespace-tests.el --- Test suite for whitespace -*- lexical-binding: t -*-
2
3;; Copyright (C) 2016 Free Software Foundation, Inc.
4
5;; This file is part of GNU Emacs.
6
7;; GNU Emacs is free software: you can redistribute it and/or modify
8;; it under the terms of the GNU General Public License as published by
9;; the Free Software Foundation, either version 3 of the License, or
10;; (at your option) any later version.
11
12;; GNU Emacs is distributed in the hope that it will be useful,
13;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;; GNU General Public License for more details.
16
17;; You should have received a copy of the GNU General Public License
18;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19
20;;; Code:
21
22(require 'ert)
23(require 'whitespace)
24
25(defun whitespace-tests--cleanup-string (string)
26 (with-temp-buffer
27 (insert string)
28 (whitespace-cleanup)
29 (buffer-string)))
30
31(ert-deftest whitespace-cleanup-eob ()
32 (let ((whitespace-style '(empty)))
33 (should (equal (whitespace-tests--cleanup-string "a\n")
34 "a\n"))
35 (should (equal (whitespace-tests--cleanup-string "a\n\n")
36 "a\n"))
37 (should (equal (whitespace-tests--cleanup-string "a\n\t\n")
38 "a\n"))
39 (should (equal (whitespace-tests--cleanup-string "a\n\t \n")
40 "a\n"))
41 (should (equal (whitespace-tests--cleanup-string "a\n\t \n\n")
42 "a\n"))
43 (should (equal (whitespace-tests--cleanup-string "\n\t\n")
44 ""))
45 ;; Whitespace at end of non-empty line is not covered by the
46 ;; `empty' style.
47 (should (equal (whitespace-tests--cleanup-string "a \n\t \n\n")
48 "a \n"))))
49
50(provide 'whitespace-tests)
51
52;;; whitespace-tests.el ends here