]> git.eshelyaron.com Git - emacs.git/commitdiff
dired-tests: Unload tested features after test them
authorTino Calancha <tino.calancha@gmail.com>
Mon, 31 Jul 2017 12:51:12 +0000 (21:51 +0900)
committerTino Calancha <tino.calancha@gmail.com>
Mon, 31 Jul 2017 12:59:47 +0000 (21:59 +0900)
Some tests are for Dired with ls-lisp or eshell-ls.
Requiring these features add an advice on `dired' and
might affect other tests.
Do not require these features at the top of the file; require
then inside the tests and unload then at the end.
* test/lisp/dired-tests.el (dired-test-bug27693)
(dired-test-bug7131, dired-test-bug27817, dired-test-bug27631):
require ls-lisp and/or eshell-ls inside the test; unload the
features at the end.

test/lisp/dired-tests.el

index cd58edaa3f83a8021bcc9aaf1d90222c43959af7..d6fe839708d77f8060a05e1a0b9552f034316800 100644 (file)
@@ -21,7 +21,6 @@
 (require 'ert)
 (require 'dired)
 (require 'nadvice)
-(require 'ls-lisp)
 
 (ert-deftest dired-autoload ()
   "Tests to see whether dired-x has been autoloaded"
 
 (ert-deftest dired-test-bug27693 ()
   "Test for http://debbugs.gnu.org/27693 ."
+  (require 'ls-lisp)
   (let ((dir (expand-file-name "lisp" source-directory))
         (size "")
         ls-lisp-use-insert-directory-program buf)
                        (file-attributes (dired-get-filename)))))
           (search-backward-regexp size nil t)
           (should (looking-back "[[:space:]]" (1- (point)))))
+      (unload-feature 'ls-lisp 'force)
       (when (buffer-live-p buf) (kill-buffer buf)))))
 
 (ert-deftest dired-test-bug7131 ()
 (ert-deftest dired-test-bug27762 ()
   "Test for http://debbugs.gnu.org/27762 ."
   :expected-result :failed
+  (require 'ls-lisp)
   (let* ((dir source-directory)
          (default-directory dir)
          (files (mapcar (lambda (f) (concat "src/" f))
           (should (looking-at "src"))
           (next-line) ; File names must be aligned.
           (should (looking-at "src")))
+      (unload-feature 'ls-lisp 'force)
       (when (buffer-live-p buf) (kill-buffer buf)))))
 
 (ert-deftest dired-test-bug27817 ()
           (customize-set-variable 'eshell-ls-use-in-dired t)
           (should (setq buf (dired source-directory))))
       (customize-set-variable 'eshell-ls-use-in-dired orig)
+      (unload-feature 'em-ls 'force)
       (and (buffer-live-p buf) (kill-buffer)))))
 
 (ert-deftest dired-test-bug27631 ()
            (setq buf (dired (expand-file-name "dir*/*.txt" dir)))
            (dired-toggle-marks)
            (should (cdr (dired-get-marked-files)))))
+      (unload-feature 'em-ls 'force)
       (delete-directory dir 'recursive)
       (when (buffer-live-p buf) (kill-buffer buf)))))