Function: ibtypes::hyperbole-run-test-definition
ibtypes::hyperbole-run-test-definition is a byte-compiled function
defined in hypb-ert.el.
Signature
(ibtypes::hyperbole-run-test-definition)
Documentation
If on the name in the first line of an ert test def, eval and run the test.
With an Assist Key press instead, edebug the test and step through it.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb-ert.el
(defib hyperbole-run-test-definition ()
"If on the name in the first line of an ert test def, eval and run the test.
With an Assist Key press instead, edebug the test and step through it."
(let ((test-name-and-positions (hypb-ert-def-at-p t)))
(when test-name-and-positions
(apply #'ibut:label-set test-name-and-positions)
(hact 'hypb-ert-run-test-at-definition))))