Function: ert-skip

ert-skip is a byte-compiled function defined in ert.el.gz.

Signature

(ert-skip DATA)

Documentation

Terminate the current test and mark it skipped. Does not return.

DATA is displayed to the user and should state the reason for skipping.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert.el.gz
(defun ert-skip (data)
  "Terminate the current test and mark it skipped.  Does not return.
DATA is displayed to the user and should state the reason for skipping."
  (signal 'ert-test-skipped (list data)))