Testing
previous slidetable of contentsnext slide

'make test'
t/1_basic.t:
BEGIN { print "1..5\n" }

if(your_test_here) {
  print "ok 1\n";
}
else {
  print "not ok 1\n";
}
Sample output
ok 1
ok 2
ok 3
not ok 4
ok 5