BEGIN {
unshift
@INC
,
't/lib/'
;
}
"1..6\n"
;
sub
fail {
"fail "
,
$_
[0],
"\n"
}
"not ok 1\n"
;
"fail 2\n"
;
fail(3);
&fail
(4);
"not "
unless
"whatnot okapi"
eq
"whatokapi"
;
"ok 5\n"
;
no
Filter::Simple::FilterTest;
"not "
unless
"not ok"
=~ /^not /;
"ok 6\n"
;