Function: ert-read-test-name-at-point
ert-read-test-name-at-point is a byte-compiled function defined in
ert.el.gz.
Signature
(ert-read-test-name-at-point PROMPT)
Documentation
Read the name of a test and return it as a symbol.
As a default, use the symbol at point, or the test at point if in the ERT results buffer. Prompt with PROMPT, augmented with the default (if any).
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert.el.gz
(defun ert-read-test-name-at-point (prompt)
"Read the name of a test and return it as a symbol.
As a default, use the symbol at point, or the test at point if in
the ERT results buffer. Prompt with PROMPT, augmented with the
default (if any)."
(ert-read-test-name prompt (ert-test-at-point) nil t))