mirror of
https://github.com/zaphar/ucg.git
synced 2025-07-22 18:19:54 -04:00
* Assert now requires a tuple instead of a string containing statements. * We include a helpful ucg based unit testing module. Fixes: #26
17 lines
288 B
Plaintext
17 lines
288 B
Plaintext
assert {macro };
|
|
assert {{ foo = hello world}};
|
|
assert {{ foo = "hello world"};
|
|
assert {{ = }};
|
|
assert {"};
|
|
assert {=};
|
|
|
|
assert {let };
|
|
assert {let foo };
|
|
assert {let foo =};
|
|
assert {import };
|
|
assert {import foo };
|
|
assert {out };
|
|
assert {out "};
|
|
assert {out json};
|
|
|
|
assert {let env = 1;}; |