xref: /openbsd-src/gnu/usr.bin/perl/cpan/Text-Tabs/t/lib/ok.pl (revision 6ca44032e7be0d795b9f13c99fbce059e942c15d)
1use strict; use warnings;
2my $_t;
3sub ok { print +( $_[0] ? 'ok ' : 'not ok ' ) . ++$_t . ( $_[1] ? " - $_[1]\n" : "\n" ); !!$_[0] }
4sub diag { s/^/# /gm, s/\Z.*/\n/s, print for join '', map +( defined $_ ? $_ : 'undef' ), @_ }
51;
6