Function: ert--results-progress-bar-button-help-echo

ert--results-progress-bar-button-help-echo is a byte-compiled function defined in ert.el.gz.

Signature

(ert--results-progress-bar-button-help-echo WINDOW OBJECT POS)

Documentation

Show the test name in help-echo.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert.el.gz
(defun ert--results-progress-bar-button-help-echo (_window object pos)
  "Show the test name in `help-echo'."
  (format
   "%s\nmouse-2, RET: Reveal test result"
   (with-current-buffer object
     (save-excursion
       (goto-char pos)
       (or (ert-test-at-point) "")))))