filter_only.t

来自「source of perl for linux application,」· T 代码 · 共 37 行

T
37
字号
BEGIN {    if( $ENV{PERL_CORE} ) {        chdir 't';        @INC = ('../lib', 'lib');    }    else {        unshift @INC, 't/lib/';    }}chdir 't';use Filter::Simple::FilterOnlyTest qr/not ok/ => "ok",                                    "bad" => "ok", fail => "die";print "1..9\n";sub fail { print "ok ", $_[0], "\n" }sub ok { print "ok ", $_[0], "\n" }print "not ok 1\n";print "bad 2\n";fail(3);&fail(4);print "not " unless "whatnot okapi" eq "whatokapi";print "ok 5\n";ok 7 unless not ok 6;no Filter::Simple::FilterOnlyTest; # THE FUN STOPS HEREprint "not " unless "not ok" =~ /^not /;print "ok 8\n";print "not " unless "bad" =~ /bad/;print "ok 9\n";

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?