Find test namespaces in basedir matching regexp,
or from config settings.
(defn test-namespaces
"Find test namespaces in basedir matching regexp,
or from config settings."
([] (test-namespaces (config/test-dir) (config/test-regex)))
([basedir regexp]
(->> (find-namespaces-in-dir (java.io.File. basedir))
(map str)
(filter (partial re-find regexp))
(map symbol))))
Comments top
No comments for test-namespaces. Log in to add a comment.