diff options
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/automated/undo-tests.el | 22 |
2 files changed, 6 insertions, 21 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 4aaa5f12bb..1b2b885170 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2013-06-27 Glenn Morris <rgm@gnu.org> + + * automated/undo-tests.el (undo-test3): Remove test that seems to + nothing that the previous one doesn't, except leave a tempfile. + 2013-06-26 Glenn Morris <rgm@gnu.org> * automated/info-xref.el: New file. diff --git a/test/automated/undo-tests.el b/test/automated/undo-tests.el index 3037db0360..98b0c52728 100644 --- a/test/automated/undo-tests.el +++ b/test/automated/undo-tests.el @@ -1,6 +1,6 @@ ;;; undo-tests.el --- Tests of primitive-undo -;; Copyright (C) 2012 Aaron S. Hawley +;; Copyright (C) 2012-2013 Free Software Foundation, Inc. ;; Author: Aaron S. Hawley <aaron.s.hawley@gmail.com> @@ -140,26 +140,6 @@ (undo) (buffer-string)))))) -(ert-deftest undo-test3 () - "Test modtime with \\[undo] command." - (let ((tmpfile (make-temp-file "undo-test3"))) - (with-temp-file tmpfile - (let ((buffer-file-name tmpfile)) - (buffer-enable-undo) - (set (make-local-variable 'make-backup-files) nil) - (undo-boundary) - (insert ?\s) - (undo-boundary) - (basic-save-buffer) - (insert ?\t) - (undo) - (should - (string-equal (buffer-string) - (progn - (undo) - (buffer-string))))) - (delete-file tmpfile)))) - (ert-deftest undo-test4 () "Test \\[undo] of \\[flush-lines]." (with-temp-buffer |