diff options
author | scgilardi <scgilardi@gmail.com> | 2009-03-02 23:31:50 +0000 |
---|---|---|
committer | scgilardi <scgilardi@gmail.com> | 2009-03-02 23:31:50 +0000 |
commit | d6a2d2b3d1b9b6ea321d9fd7c0dca1c9a217f6cc (patch) | |
tree | dccb783f90f8c5f586a4207fc41535428e14072c | |
parent | 3fd57b7681bd25d6d97e55441593f1e838f6c2af (diff) |
test-clojure: use :only for test-is
-rw-r--r-- | src/clojure/contrib/test_clojure.clj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clojure/contrib/test_clojure.clj b/src/clojure/contrib/test_clojure.clj index 3dc6a43e..65a97671 100644 --- a/src/clojure/contrib/test_clojure.clj +++ b/src/clojure/contrib/test_clojure.clj @@ -14,7 +14,7 @@ ;; Created 22 October 2008 (ns clojure.contrib.test-clojure - (:use clojure.contrib.test-is) + (:use [clojure.contrib.test-is :only (run-tests)]) (:gen-class)) (def test-names @@ -40,7 +40,7 @@ [] (println "Loading tests...") (apply require :reload-all test-namespaces) - (apply clojure.contrib.test-is/run-tests test-namespaces)) + (apply run-tests test-namespaces)) (defn -main "Run all defined tests from the command line" |