Function: ert-results-find-test-at-point-other-window

ert-results-find-test-at-point-other-window is an interactive and byte-compiled function defined in ert.el.gz.

Signature

(ert-results-find-test-at-point-other-window)

Documentation

Find the definition of the test at point in another window.

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-find-test-at-point-other-window ()
  "Find the definition of the test at point in another window.

To be used in the ERT results buffer."
  (interactive nil ert-results-mode)
  (let ((name (ert-test-at-point)))
    (unless name
      (user-error "No test at point"))
    (ert-find-test-other-window name)))