adding in a cond macro test.

This commit is contained in:
Paul R. Tagliamonte 2013-03-09 00:18:32 -05:00
parent ab2cf5beda
commit 5bdebdf5fc

View File

@ -50,3 +50,10 @@
(assert (= 1 1))
(assert (= 1 1))
(assert (= 1 1)))))
(defn test_cond []
"NATIVE: test if cond sorta works."
(cond
(= 1 2) (assert (= true false))
(is null null) (assert (= true true))))