Concept
- Test files conventionally use *_test.se.
- Run project tests with `se test .`.
Example
use test
test.equal 4 2 + 2
test.ok true
test.not_equal 1 2SE ships a small assertion module and a project test command.
use test
test.equal 4 2 + 2
test.ok true
test.not_equal 1 2