Function: ert--signal-should-execution

ert--signal-should-execution is a byte-compiled function defined in ert.el.gz.

Signature

(ert--signal-should-execution FORM-DESCRIPTION)

Documentation

Tell the current should form observer (if any) about FORM-DESCRIPTION.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert.el.gz
(defun ert--signal-should-execution (form-description)
  "Tell the current `should' form observer (if any) about FORM-DESCRIPTION."
  (when ert--should-execution-observer
    (funcall ert--should-execution-observer form-description)))