Explorar el Código

add some more tests

Getty Ritter hace 3 años
padre
commit
f68803881e
Se han modificado 4 ficheros con 30 adiciones y 0 borrados
  1. 2 0
      tests/assn.matzo
  2. 18 0
      tests/assn.parsed
  3. 1 0
      tests/atom_lit.matzo
  4. 9 0
      tests/atom_lit.parsed

+ 2 - 0
tests/assn.matzo

@@ -0,0 +1,2 @@
+x := 5;
+y := This;

+ 18 - 0
tests/assn.parsed

@@ -0,0 +1,18 @@
+[
+    Assn(
+        "x",
+        Lit(
+            Num(
+                5,
+            ),
+        ),
+    ),
+    Assn(
+        "y",
+        Lit(
+            Atom(
+                "This",
+            ),
+        ),
+    ),
+]

+ 1 - 0
tests/atom_lit.matzo

@@ -0,0 +1 @@
+puts Foo

+ 9 - 0
tests/atom_lit.parsed

@@ -0,0 +1,9 @@
+[
+    Puts(
+        Lit(
+            Atom(
+                "Foo",
+            ),
+        ),
+    ),
+]