[boot]: moving tests to test/core

to avoid "boot => The :source-paths, :resource-paths, and :asset-paths must not overlap."
This commit is contained in:
anatoly 2015-12-20 19:22:17 -05:00
parent 8f9f44e3cc
commit a75b087b8f
14 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@
(in-ns 'dev)) (in-ns 'dev))
(deftask test [] (deftask test []
(set-env! :source-paths #(conj % "test" "test/clj")) ;; (!) :source-paths must not overlap. (set-env! :source-paths #(conj % "test/core" "test/clj")) ;; (!) :source-paths must not overlap.
(bt/test)) (bt/test))
(task-options! (task-options!

View file

@ -61,4 +61,4 @@
:optimizations :advanced :optimizations :advanced
:pretty-print false}}}}} :pretty-print false}}}}}
:test {:source-paths ["test" "test/clj" "test/cljs"]}}) :test {:source-paths ["test/core" "test/clj" "test/cljs"]}})