diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-10-23 01:47:15 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-10-23 01:47:15 -0700 |
commit | 3a1f6f4cb2e6632cf6d7fa2889e3432e523d0dc5 (patch) | |
tree | d2dfbd6dad291789393dfbea2125718b31aa0acd | |
parent | 4f6bca5f84d8d73a7ef0c6a7fff8c634abf99224 (diff) | |
download | txr-3a1f6f4cb2e6632cf6d7fa2889e3432e523d0dc5.tar.gz txr-3a1f6f4cb2e6632cf6d7fa2889e3432e523d0dc5.tar.bz2 txr-3a1f6f4cb2e6632cf6d7fa2889e3432e523d0dc5.zip |
syntax: add tests for #; syntax.
* tests/012/syntax.tl: New tests, some of which fail.
-rw-r--r-- | tests/012/syntax.tl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/012/syntax.tl b/tests/012/syntax.tl index 87b01d67..36894610 100644 --- a/tests/012/syntax.tl +++ b/tests/012/syntax.tl @@ -24,3 +24,15 @@ #; .foo #;a.b 42 42) + +(mtest + '(#;abc) nil + '(#; abc 1) (1) + '(0 #; abc 1) (0 1) + '(0 #; abc) (0)) + +(mtest + '(#; .abc) nil + '(#; .abc 1) (1) + '(0 #; .abc 1) (0 1) + '(0 #; .abc) (0)) |