Function: ert-make-test-unbound

ert-make-test-unbound is a byte-compiled function defined in ert.el.gz.

Signature

(ert-make-test-unbound SYMBOL)

Documentation

Make SYMBOL name no test. Return SYMBOL.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert.el.gz
(defun ert-make-test-unbound (symbol)
  "Make SYMBOL name no test.  Return SYMBOL."
  (cl-remprop symbol 'ert--test)
  symbol)