blob: 6cfe64c07e4da6a3a24eedc6211cd221c6058fb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
;;; indent-tests.el --- tests for src/indent.c -*- lexical-binding:t -*-
;; Copyright (C) 2020-2021 Free Software Foundation, Inc.
;; 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 <https://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(ert-deftest indent-tests-move-to-column-invis-1tab ()
"Test `move-to-column' when a TAB is followed by invisible text."
(should
(string=
(with-temp-buffer
(insert "\tLine starting with INVISIBLE text after TAB\n")
(add-text-properties 2 21 '(invisible t))
(goto-char (point-min))
(move-to-column 7 t)
(buffer-substring-no-properties 1 8))
" ")))
(ert-deftest indent-tests-move-to-column-invis-2tabs ()
"Test `move-to-column' when 2 TABs are followed by invisible text."
(should
(string=
(with-temp-buffer
(insert "\t\tLine starting with INVISIBLE text after TAB\n")
(add-text-properties 3 22 '(invisible t))
(goto-char (point-min))
(move-to-column 12 t)
(buffer-substring-no-properties 1 11))
"\t \tLine")))
(ert-deftest indent-tests-move-to-column-invis-between-tabs ()
"Test `move-to-column' when 2 TABs are mixed with invisible text."
(should
(string=
(with-temp-buffer
(insert "\txxx\tLine starting with INVISIBLE text after TAB\n")
(add-text-properties 6 25 '(invisible t))
(add-text-properties 2 5 '(invisible t))
(goto-char (point-min))
(move-to-column 12 t)
(buffer-substring-no-properties 1 14))
"\txxx \tLine")))
;;; indent-tests.el ends here
|