nomsu/lib/testing.nom
Bruce Hill dcd3391b36 Updated to undo some of the block/thunk stuff. Thunks are thunks, and
expressions can be grouped with parens, and they have a clear
distinction.
2017-10-02 17:21:22 -07:00

14 lines
373 B
Plaintext

require "lib/metaprogramming.nom"
# For unit testing
rule [test tree %generated == %expected] =:
if (%generated != %expected):
error ".."
|Test Failed!
|Expected:
|\(%expected)
|But got:
|\(%generated)
parse [test %code yields %expected] as:
test tree (nomsu "tree_to_str" [\%code]) == %expected