no_ending.t

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

T
22
字号
use Test::Builder;BEGIN {    if( $ENV{PERL_CORE} ) {        chdir 't';        @INC = '../lib';    }}BEGIN {    my $t = Test::Builder->new;    $t->no_ending(1);}use Test::More tests => 3;# Normally, Test::More would yell that we ran too few tests, but we# supressed the ending diagnostics.pass;print "ok 2\n";print "ok 3\n";

⌨️ 快捷键说明

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