aboutsummaryrefslogtreecommitdiffstats
path: root/test/lisp/wdired-tests.el (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Silence some byte-compiler warnings in testsBasil L. Contovounesios2020-06-031-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * test/lisp/emacs-lisp/cl-generic-tests.el: * test/lisp/progmodes/elisp-mode-tests.el: Declare functions referred to within macroexpansions. (xref-elisp-overloadable-no-default) (xref-elisp-overloadable-co-located-default) (xref-elisp-overloadable-separate-default): Prefix unused arguments with underscore. * test/lisp/international/ccl-tests.el: * test/lisp/wdired-tests.el: * test/lisp/emacs-lisp/package-tests.el: Declare functions used. (package-test-update-archives, package-test-signed): Use revert-buffer in place of its obsolete alias package-menu-refresh. * test/lisp/eshell/eshell-tests.el: * test/lisp/mail/footnote-tests.el: * test/src/buffer-tests.el: Require dependencies used. * test/lisp/image/exif-tests.el: Remove unneeded (require 'seq). (test-exit-direct-ascii-value): Actually perform the test. * test/lisp/progmodes/sql-tests.el (sql-test-add-existing-product): Fix typo. * test/lisp/simple-tests.el (with-shell-command-dont-erase-buffer): * test/src/data-tests.el (test-bool-vector-bv-from-hex-string) (test-bool-vector-apply-mock-op): Remove unused local variables.
* Update copyright year to 2020Paul Eggert2020-01-011-1/+1
| | | | Run "TZ=UTC0 admin/update-copyright $(git ls-files)".
* Stop wdired tests leaving behind symlink /tmp/emacs1000Glenn Morris2019-07-141-0/+3
| | | | * test/lisp/wdired-tests.el (server-socket-dir): Make effective.
* Merge from emacs-26Noam Postavsky2019-06-251-1/+5
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | e62ad04963 Fix sgml-mode handling of quotes within parens (Bug#36347) 06b35b2f92 ; * lisp/frame.el: Enhance add-variable-watcher commentary. 572e34bb6f Rename 'make-symbolic-link' argument NEWNAME to LINKNAME 04477adedc Check that length of data returned by sysctl is non-zero 81535eeadb * test/lisp/progmodes/python-tests.el (python-virt-bin): D... 9d48979ca8 Fix Python tests depending on system-type fcf6cc3177 Fix problem with wdired test when symlinks cannot be created. 4701e0663e Improve wording of documentation of click events # Conflicts: # lisp/textmodes/sgml-mode.el # test/lisp/textmodes/sgml-mode-tests.el
| * Fix problem with wdired test when symlinks cannot be created.Juanma Barranquero2019-06-161-1/+5
| | | | | | | | | | | | * test/lisp/wdired-tests.el (wdired-test-symlink-name): Skip test if 'make-symbolic-link' fails for whatever reason; that's not what's being tested.
* | Make wdired-mode ignore ls file indicatorsStephen Berman2019-04-251-0/+45
|/ | | | | | | | * lisp/wdired.el (wdired--restore-dired-filename-prop): When dired-listing-switches includes "F" or "classify", don't treat appended indicator characters as part of the file name (bug#34915). * test/lisp/wdired-tests.el (wdired-test-bug34915): New test.
* Update copyright year to 2019Paul Eggert2019-01-011-1/+1
| | | | Run 'TZ=UTC0 admin/update-copyright $(git ls-files)'.
* * test/lisp/wdired-tests.el (wdired-test-unfinished-edit-01): Fix typo.Glenn Morris2018-08-081-2/+2
|
* Fix wdired test failure when byte compiled (bug#32318)Stephen Berman2018-07-311-0/+3
| | | | | * test/lisp/wdired-tests.el: Require wdired. Defvar dired-query to silence byte-compiler.
* * test/lisp/wdired-tests.el (wdired-test-symlink-name): New test.Stephen Berman2018-07-301-0/+21
|
* Add initial tests for wdired.elStephen Berman2018-07-291-0/+105
* test/lisp/wdired-tests.el: New file.