Is the file newer than the last-watched time for
its test namespace?
(defn needs-test?
"Is the file newer than the last-watched time for
its test namespace?"
[file]
(boolean
(when (.isFile file)
(> (.lastModified file) (last-watched file)))))
Comments top
No comments for needs-test?. Log in to add a comment.