Added wrap/unwrap and a vau test that uses wrap!
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
vau_with_add_called (read-string "((vau (y) (+ 1 2)) 4)")
|
||||
vau_with_passthrough (read-string "((vau (y) y) 4)")
|
||||
vau_with_no_eval_add (read-string "((vau (y) (+ 13 2 y)) 4)")
|
||||
vau_with_wrap_add (read-string "((wrap (vau (y) (+ 13 2 y))) (+ 3 4))")
|
||||
vau_with_add_p (read-string "(vau de (y) (+ (eval y de) (+ 1 2)))")
|
||||
vau_with_add_p_called (read-string "((vau de (y) (+ (eval y de) (+ 1 2))) 4)")
|
||||
_ (test-case simple_add)
|
||||
@@ -24,6 +25,7 @@
|
||||
_ (test-case vau_with_add_called)
|
||||
_ (test-case vau_with_passthrough)
|
||||
_ (test-case vau_with_no_eval_add)
|
||||
_ (test-case vau_with_wrap_add)
|
||||
;_ (test-case vau_with_add_p)
|
||||
;_ (test-case vau_with_add_p_called)
|
||||
) nil))
|
||||
|
||||
Reference in New Issue
Block a user