skipall.t

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

T
45
字号
BEGIN {    if( $ENV{PERL_CORE} ) {        chdir 't';        @INC = ('../lib', 'lib');    }    else {        unshift @INC, 't/lib';    }}   use strict;# Can't use Test.pm, that's a 5.005 thing.package My::Test;print "1..2\n";my $test_num = 1;# Utility testing functions.sub ok ($;$) {    my($test, $name) = @_;    my $ok = '';    $ok .= "not " unless $test;    $ok .= "ok $test_num";    $ok .= " - $name" if defined $name;    $ok .= "\n";    print $ok;    $test_num++;}package main;require Test::More;require Test::Simple::Catch;my($out, $err) = Test::Simple::Catch::caught();Test::More->import('skip_all');END {    My::Test::ok($$out eq "1..0\n");    My::Test::ok($$err eq "");}

⌨️ 快捷键说明

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