TESTS: more test coverage in the integration tests.

This commit is contained in:
Jeremy Wall 2019-01-08 17:22:46 -06:00
parent 03d69ede42
commit f5ed6deec2

View File

@ -43,4 +43,16 @@ assert |
|; |;
assert | assert |
cplxresult.boolfield == true; cplxresult.boolfield == true;
|;
let macro_tpl_arg = macro(tpl) => {
result = tpl.field,
};
let arg_tpl = {
field = "value",
};
assert |
macro_tpl_arg(arg_tpl).result == arg_tpl.field;
|; |;