aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/test_contrib.clj
diff options
context:
space:
mode:
authorStuart Halloway <stu@thinkrelevance.com>2009-09-28 17:56:31 -0400
committerStuart Halloway <stu@thinkrelevance.com>2009-09-28 17:56:31 -0400
commit04a22729691863a5b7e7b1b3c6c1157a02aff3b2 (patch)
treef546ed7228bb1cb506eb53a510ea98ab11df3182 /src/clojure/contrib/test_contrib.clj
parent39618b6d881fb0c3b52de4929aa34134bb32ffdb (diff)
compile str-utils2 and other build fixes, refs #22
Diffstat (limited to 'src/clojure/contrib/test_contrib.clj')
-rw-r--r--src/clojure/contrib/test_contrib.clj6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/clojure/contrib/test_contrib.clj b/src/clojure/contrib/test_contrib.clj
index e9f58db7..724445e0 100644
--- a/src/clojure/contrib/test_contrib.clj
+++ b/src/clojure/contrib/test_contrib.clj
@@ -24,8 +24,10 @@
:seq-utils-test])
(def test-namespaces
- (map #(symbol (str "clojure.contrib.test-contrib." (name %)))
- test-names))
+ (concat
+ ['clojure.contrib.math.tests 'clojure.contrib.core.tests]
+ (map #(symbol (str "clojure.contrib.test-contrib." (name %)))
+ test-names)))
(defn run
"Runs all defined tests"