nomsu/tests/errors.nom

17 lines
411 B
Plaintext
Raw Normal View History

#!/usr/bin/env nomsu -V2.5.4.3
2018-06-15 00:40:36 -07:00
#
Tests for the stuff defined in core/errors.nom
try (barf) and if it succeeds (barf "try failed.")
%worked = (no)
try (barf) and if it barfs (%worked = (yes))
2018-06-15 00:40:36 -07:00
assume %worked or barf "try/catch failed"
%x = 1
try:
%x = 2
do (barf) then always (%x = 3)
..and if it barfs (do nothing)
2018-06-15 00:40:36 -07:00
assume (%x == 3) or barf "do/then always failed"
say "Error handling test passed."