Function: ert-results-rerun-test-at-point-debugging-errors
ert-results-rerun-test-at-point-debugging-errors is an interactive and
byte-compiled function defined in ert.el.gz.
Signature
(ert-results-rerun-test-at-point-debugging-errors)
Documentation
Re-run the test at point with ert-debug-on-error bound to t.
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-rerun-test-at-point-debugging-errors ()
"Re-run the test at point with `ert-debug-on-error' bound to t.
To be used in the ERT results buffer."
(interactive nil ert-results-mode)
(let ((ert-debug-on-error t))
(ert-results-rerun-test-at-point)))