* automated/undo-tests.el (undo-test3): Remove test that seems to

nothing that the previous one doesn't, except leave a tempfile.

Fix copyright header.
This commit is contained in:
Glenn Morris 2013-06-26 19:00:54 -07:00
parent ae7bfbf5a4
commit fc3ec98234
2 changed files with 6 additions and 21 deletions

View file

@ -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.

View file

@ -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