Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-12-16 | Convert tests/ to subproject, initial work on cross-testing support | Boris Kolpackov | 1 | -1/+1 | |
2016-12-01 | Organize tests/, factor common testscript fragments | Boris Kolpackov | 1 | -3/+1 | |
2016-11-23 | Implement assert directive | Boris Kolpackov | 1 | -0/+7 | |
The grammar is as follows: assert <expression> [<description>] assert! <expression> [<description>] The expression must evaluate to 'true' or 'false', just like in if-else. | |||||
2015-12-03 | Implement new potential directive keyword test | Boris Kolpackov | 1 | -8/+0 | |
Now we can use directive names as variables and targets type, for example: print = foo # variable print{foo}: # target | |||||
2015-09-09 | Add support for quoting directive names | Boris Kolpackov | 1 | -0/+8 | |
Now only unquoted, literal names are recognized as directives, for example: 'print' = abc print $print |