Function: hypb-ert-get-require-symbols
hypb-ert-get-require-symbols is a byte-compiled function defined in
hypb-ert.el.
Signature
(hypb-ert-get-require-symbols)
Documentation
Return the list of test Lisp library symbols to require.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb-ert.el
(defun hypb-ert-get-require-symbols ()
"Return the list of test Lisp library symbols to require."
(mapcar (lambda (file)
(intern (substring file 0 -3)))
(directory-files (expand-file-name "test" hyperb:dir) nil "^[a-zA-Z].*\\.el$")))