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 | d92448afa4f584186ec4466d28404488ba236dc7 (patch) | |
tree | d2dfbd6dad291789393dfbea2125718b31aa0acd /tests/012 | |
parent | b22efb366bc557a98552bdbfb2471f7386464c1f (diff) | |
download | txr-d92448afa4f584186ec4466d28404488ba236dc7.tar.gz txr-d92448afa4f584186ec4466d28404488ba236dc7.tar.bz2 txr-d92448afa4f584186ec4466d28404488ba236dc7.zip |
syntax: add tests for #; syntax.
* tests/012/syntax.tl: New tests, some of which fail.
Diffstat (limited to 'tests/012')
-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)) |