aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/step1_read_print.mal1
-rw-r--r--tests/step7_quote.mal5
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/step1_read_print.mal b/tests/step1_read_print.mal
index 7772de9..2b7c269 100644
--- a/tests/step1_read_print.mal
+++ b/tests/step1_read_print.mal
@@ -78,6 +78,7 @@ abc-def
;;
;; Testing reader errors
+;;; TODO: fix these so they fail correctly
(1 2
; expected ')', got EOF
[1 2
diff --git a/tests/step7_quote.mal b/tests/step7_quote.mal
index 9166065..38dac01 100644
--- a/tests/step7_quote.mal
+++ b/tests/step7_quote.mal
@@ -73,3 +73,8 @@
;=>false
(= "abc" 'abc)
;=>false
+
+;;;;; Test quine
+;;; TODO: needs expect line length fix
+;;;((fn* [q] (quasiquote ((unquote q) (quote (unquote q))))) (quote (fn* [q] (quasiquote ((unquote q) (quote (unquote q)))))))
+;;;=>((fn* [q] (quasiquote ((unquote q) (quote (unquote q))))) (quote (fn* [q] (quasiquote ((unquote q) (quote (unquote q)))))))