diff options
author | Stuart Halloway <stu@thinkrelevance.com> | 2009-06-24 01:08:56 -0400 |
---|---|---|
committer | Stuart Halloway <stu@thinkrelevance.com> | 2009-06-24 01:08:56 -0400 |
commit | 4f2c7bb5cf6828eb710fd18b603828ab295d0fa5 (patch) | |
tree | 3d211ff0dfa90421674814ae64265f9f551987dd /src/clojure/contrib/test_contrib.clj | |
parent | 17e6a5c17a9f0577f749632b81e3900a383405c6 (diff) |
gtic: move clojure tests and supporting libraries into clojure repos
Diffstat (limited to 'src/clojure/contrib/test_contrib.clj')
-rw-r--r-- | src/clojure/contrib/test_contrib.clj | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/clojure/contrib/test_contrib.clj b/src/clojure/contrib/test_contrib.clj index f5cf44ea..a846ab17 100644 --- a/src/clojure/contrib/test_contrib.clj +++ b/src/clojure/contrib/test_contrib.clj @@ -13,14 +13,13 @@ ;; stuart.halloway (gmail) (ns clojure.contrib.test-contrib - (:use [clojure.contrib.test-is :only (run-tests)]) + (:use [clojure.test :only (run-tests)]) (:gen-class)) (def test-names [:complex-numbers :fnmap :macro-utils :monads :pprint.pretty :pprint.cl-format :str-utils :shell-out :test-graph - :test-dataflow :test-java-utils :test-lazy-seqs :test-is - :test-is-fixtures]) + :test-dataflow :test-java-utils :test-lazy-seqs]) (def test-namespaces (map #(symbol (str "clojure.contrib.test-contrib." (name %))) |