
* test/lisp/dired-tests.el (dired-test-bug27243-02) (dired-test-bug27243-03, dired-test-bug27899) (dired-test-with-temp-dirs): Remove unused local variables. * test/lisp/hi-lock-tests.el (hi-lock-bug26666) (hi-lock-test-set-pattern): Mark unused arguments. * test/lisp/ses-tests.el (ses-tests-renamed-cells-row-insertion): Remove unused global "ses-tests-trigger". * test/lisp/simple-tests.el (line-number-at-pos-when-passing-point): Remove unused local "pos". * test/lisp/emacs-lisp/benchmark-tests.el (benchmark-tests): Pacify compiler. * test/lisp/emacs-lisp/package-tests.el (package-test-signed): Replace obsolete function epg-configuration. * test/lisp/ls-lisp-tests.el: * test/lisp/eshell/em-ls-tests.el: Require dired. * test/lisp/progmodes/ruby-mode-tests.el (ruby-forward-sexp-skips-method-calls-with-keyword-names): * test/lisp/vc/diff-mode-tests.el (diff-mode-test-ignore-trailing-dashes): Replace interactive funcs.
99 lines
3.5 KiB
EmacsLisp
99 lines
3.5 KiB
EmacsLisp
;;; tests/em-ls-tests.el --- em-ls test suite
|
|
|
|
;; Copyright (C) 2017-2018 Free Software Foundation, Inc.
|
|
|
|
;; Author: Tino Calancha <tino.calancha@gmail.com>
|
|
|
|
;; 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:
|
|
|
|
(require 'ert)
|
|
(require 'em-ls)
|
|
(require 'dired)
|
|
|
|
(ert-deftest em-ls-test-bug27631 ()
|
|
"Test for https://debbugs.gnu.org/27631 ."
|
|
(let* ((dir (make-temp-file "bug27631" 'dir))
|
|
(dir1 (expand-file-name "dir1" dir))
|
|
(dir2 (expand-file-name "dir2" dir))
|
|
(default-directory dir)
|
|
(orig eshell-ls-use-in-dired)
|
|
buf)
|
|
(unwind-protect
|
|
(progn
|
|
(customize-set-value 'eshell-ls-use-in-dired t)
|
|
(make-directory dir1)
|
|
(make-directory dir2)
|
|
(with-temp-file (expand-file-name "a.txt" dir1))
|
|
(with-temp-file (expand-file-name "b.txt" dir2))
|
|
(setq buf (dired (expand-file-name "dir*/*.txt" dir)))
|
|
(dired-toggle-marks)
|
|
(should (cdr (dired-get-marked-files))))
|
|
(customize-set-variable 'eshell-ls-use-in-dired orig)
|
|
(delete-directory dir 'recursive)
|
|
(when (buffer-live-p buf) (kill-buffer buf)))))
|
|
|
|
(ert-deftest em-ls-test-bug27817 ()
|
|
"Test for https://debbugs.gnu.org/27817 ."
|
|
(let ((orig eshell-ls-use-in-dired)
|
|
(dired-use-ls-dired 'unspecified)
|
|
buf insert-directory-program)
|
|
(unwind-protect
|
|
(progn
|
|
(customize-set-variable 'eshell-ls-use-in-dired t)
|
|
(should (setq buf (dired source-directory))))
|
|
(customize-set-variable 'eshell-ls-use-in-dired orig)
|
|
(and (buffer-live-p buf) (kill-buffer)))))
|
|
|
|
(ert-deftest em-ls-test-bug27843 ()
|
|
"Test for https://debbugs.gnu.org/27843 ."
|
|
(let ((orig eshell-ls-use-in-dired)
|
|
(dired-use-ls-dired 'unspecified)
|
|
buf insert-directory-program)
|
|
(unwind-protect
|
|
(progn
|
|
(customize-set-variable 'eshell-ls-use-in-dired t)
|
|
(setq buf (dired (list source-directory "lisp")))
|
|
(dired-toggle-marks)
|
|
(should-not (cdr (dired-get-marked-files))))
|
|
(customize-set-variable 'eshell-ls-use-in-dired orig)
|
|
(and (buffer-live-p buf) (kill-buffer)))))
|
|
|
|
(ert-deftest em-ls-test-bug27844 ()
|
|
"Test for https://debbugs.gnu.org/27844 ."
|
|
(let ((orig eshell-ls-use-in-dired)
|
|
(dired-use-ls-dired 'unspecified)
|
|
buf insert-directory-program)
|
|
(unwind-protect
|
|
(progn
|
|
(customize-set-variable 'eshell-ls-use-in-dired t)
|
|
(setq buf (dired (expand-file-name "lisp/*.el" source-directory)))
|
|
(dired-toggle-marks)
|
|
(should (cdr (dired-get-marked-files)))
|
|
(kill-buffer buf)
|
|
(setq buf (dired (expand-file-name "lisp/subr.el" source-directory)))
|
|
(should (looking-at "subr\\.el")))
|
|
(customize-set-variable 'eshell-ls-use-in-dired orig)
|
|
(and (buffer-live-p buf) (kill-buffer)))))
|
|
|
|
|
|
(provide 'em-ls-test)
|
|
|
|
;;; em-ls-tests.el ends here
|