diff options
author | Stuart Halloway <stu@thinkrelevance.com> | 2010-04-14 08:24:10 -0400 |
---|---|---|
committer | Stuart Halloway <stu@thinkrelevance.com> | 2010-04-16 10:36:33 -0400 |
commit | 338c07961d04a2dc41a7fb27af440e4181eba9b7 (patch) | |
tree | 31da3b850203106ff702d20fa94a585d7171f1e4 | |
parent | 6847019915f2d3a7708e3c810cc68926e35e1a7e (diff) |
test for assembla #262
Signed-off-by: Stuart Halloway <stu@thinkrelevance.com>
-rw-r--r-- | test/clojure/test_clojure/compilation.clj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/clojure/test_clojure/compilation.clj b/test/clojure/test_clojure/compilation.clj index 2ee68002..1781460a 100644 --- a/test/clojure/test_clojure/compilation.clj +++ b/test/clojure/test_clojure/compilation.clj @@ -47,3 +47,6 @@ (is (eval `(= Long/TYPE ~Long/TYPE))) (is (eval `(= Short/TYPE ~Short/TYPE))))) +(deftest test-compiler-resolution + (testing "resolve nonexistent class create should return nil (assembla #262)" + (is (nil? (resolve 'NonExistentClass.))))) |