Function: ert-results-previous-test

ert-results-previous-test is an interactive and byte-compiled function defined in ert.el.gz.

Signature

(ert-results-previous-test)

Documentation

Move point to the previous test.

To be used in the ERT results buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert.el.gz
(defun ert-results-previous-test ()
  "Move point to the previous test.

To be used in the ERT results buffer."
  (interactive nil ert-results-mode)
  (ert--results-move (ewoc-locate ert--results-ewoc) 'ewoc-prev
                     "No tests above"))