(defn find-recent-namespaces-in-dir
[dir]
(let [original-csf? clojure-source-file?]
(binding [clojure-source-file? (fn [f] (and (needs-test? f)
(original-csf? f)))]
(doall (find-namespaces-in-dir (as-file dir))))))
Comments top
No comments for find-recent-namespaces-in-dir. Log in to add a comment.