Variable: ert--find-test-regexp

ert--find-test-regexp is a variable defined in ert.el.gz.

Value

"^\\s-*(ert-deftest\\(?:\\s-\\|\n\\|;.*\n\\)+%s\\(\\s-\\|$\\)"

Documentation

The regexp the find-function mechanisms use for finding test definitions.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert.el.gz
(defvar ert--find-test-regexp
  (concat "^\\s-*(ert-deftest"
          find-function-space-re
          "%s\\(\\s-\\|$\\)")
  "The regexp the `find-function' mechanisms use for finding test definitions.")