diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test.mew | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test.mew b/tests/test.mew index 32d9df1..c01bb08 100644 --- a/tests/test.mew +++ b/tests/test.mew @@ -547,6 +547,8 @@ (test-group "op=>" (test 42 (op=> 40 (+ _ 1) inc)) + (test 42 (op=> 40 (inc _) inc)) + (test 42 (op=> 40 ,(op inc _) inc)) (test #f (op=> 40 inc even?)) (test 43 (op=> '(6 7) (apply * _) inc)) (test 42 (op=> 42))) |