adding list checks, too

This commit is contained in:
Paul R. Tagliamonte 2013-03-09 00:56:13 -05:00
parent f97cb5e4cb
commit aa89c3c98e

View File

@ -61,4 +61,5 @@
(defn test_index []
"NATIVE: Test that dict access works"
(assert (get {"one" "two"} "one") "two"))
(assert (get {"one" "two"} "one") "two")
(assert (= (get [1 2 3 4 5] 1) 2)))