hy/tests/compilers/native/quoting.hy
2013-04-08 20:24:47 -04:00

11 lines
224 B
Hy

;;;
;;;
(import-from hy.models.expression HyExpression)
(import-from hy.models.symbol HySymbol)
(defn test-basic-quoting []
(assert (= (type (quote (foo bar))) HyExpression))
(assert (= (type (quote foo)) HySymbol)))