summary refs log tree commit diff
path: root/tests/test.mew
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test.mew')
-rw-r--r--tests/test.mew4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test.mew b/tests/test.mew
index ff9685e..5587d90 100644
--- a/tests/test.mew
+++ b/tests/test.mew
@@ -244,7 +244,9 @@
   (test 42 ((op * 6 _) 7))
   (test 42 ((op * 2 _ 3) 7))
   (test 42 ((op - _ 3) 45))
-  (test 42 ((op + _ _ _ (- _ _)) 14)))
+  (test 42 ((op + _ _ _ (- _ _)) 14))
+  (test 42 ((op 42)))
+  (test 42 ((op 42) 1 2 3)))
 
 (test-group "op*"
   (test 42 ((op* *) 6 7))