From eeab56c2b75a5b19527c157877b648dee8719fbc Mon Sep 17 00:00:00 2001 From: "Paul R. Tagliamonte" Date: Mon, 8 Apr 2013 20:24:47 -0400 Subject: [PATCH] Adding a symbol checker. --- tests/compilers/native/quoting.hy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/compilers/native/quoting.hy b/tests/compilers/native/quoting.hy index 3c20bd2..63c8f96 100644 --- a/tests/compilers/native/quoting.hy +++ b/tests/compilers/native/quoting.hy @@ -6,4 +6,5 @@ (defn test-basic-quoting [] - (assert (= (type (quote (foo bar))) HyExpression))) + (assert (= (type (quote (foo bar))) HyExpression)) + (assert (= (type (quote foo)) HySymbol)))