Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-01-05 | Update copyright year | Boris Kolpackov | 2 | -2/+2 | |
2016-12-16 | Convert tests/ to subproject, initial work on cross-testing support | Boris Kolpackov | 1 | -1/+1 | |
2016-12-05 | Use new convert() in if-else, assert parsing | Boris Kolpackov | 1 | -1/+1 | |
2016-12-01 | Organize tests/, factor common testscript fragments | Boris Kolpackov | 3 | -15/+2 | |
2016-11-23 | Implement assert directive | Boris Kolpackov | 3 | -0/+46 | |
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 | 3 | -12/+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 | 3 | -0/+12 | |
Now only unquoted, literal names are recognized as directives, for example: 'print' = abc print $print |