Drop face from hi-lock--unused-faces only when used
[emacs.git] / test / lisp / hi-lock-tests.el
blob2cb662cfaca06be0480c950ed420175a391c17c1
1 ;;; hi-lock-tests.el --- Tests for hi-lock.el -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2017 Free Software Foundation, Inc.
5 ;; Author: Tino Calancha <tino.calancha@gmail.com>
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 ;;; Code:
23 (require 'ert)
24 (require 'hi-lock)
26 (ert-deftest hi-lock-bug26666 ()
27 "Test for http://debbugs.gnu.org/26666 ."
28 (let ((faces hi-lock-face-defaults))
29 (with-temp-buffer
30 (insert "a A b B\n")
31 (cl-letf (((symbol-function 'completing-read)
32 (lambda (prompt coll x y z hist defaults)
33 (car defaults))))
34 (dotimes (_ 2)
35 (let ((face (hi-lock-read-face-name)))
36 (hi-lock-set-pattern "a" face))))
37 (should (equal hi-lock--unused-faces (cdr faces))))))
39 (provide 'hi-lock-tests)
40 ;;; hi-lock-tests.el ends here