diff options
author | Frantisek Sodomka <fsodomka@gmail.com> | 2009-05-14 20:27:45 +0000 |
---|---|---|
committer | Frantisek Sodomka <fsodomka@gmail.com> | 2009-05-14 20:27:45 +0000 |
commit | c78f45d08b62f9b53b1503d1e9c83e6d7adca83f (patch) | |
tree | f5f54d5c413dbd5a97ae2583bbf19ed14a087550 /src/clojure/contrib/test_clojure/logic.clj | |
parent | 585ef55bb7996bd86c11daad1877ef12ddb783fb (diff) |
test-clojure: common helper functions in test-utils; control: do
Diffstat (limited to 'src/clojure/contrib/test_clojure/logic.clj')
-rw-r--r-- | src/clojure/contrib/test_clojure/logic.clj | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/clojure/contrib/test_clojure/logic.clj b/src/clojure/contrib/test_clojure/logic.clj index 1dba6d35..40a94c37 100644 --- a/src/clojure/contrib/test_clojure/logic.clj +++ b/src/clojure/contrib/test_clojure/logic.clj @@ -9,12 +9,8 @@ ;; Created 1/29/2009 (ns clojure.contrib.test-clojure.logic - (:use clojure.contrib.test-is)) - -;; *** Helper functions *** - -(defn exception [] - (throw (new Exception "Exception which should never occur"))) + (:use clojure.contrib.test-is + [clojure.contrib.test-clojure.test-utils :only (exception)])) ;; *** Tests *** |