revision.t

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

T
24
字号
#!/usr/bin/perl -wBEGIN {    if( $ENV{PERL_CORE} ) {        chdir 't' if -d 't';        @INC = ('../lib', 'lib');    }    else {        unshift @INC, 't/lib';    }}use Test::More tests => 4;BEGIN {     use_ok 'ExtUtils::MakeMaker';     use_ok 'ExtUtils::MM_VMS';}# Why 1?  Because a common mistake is for the regex to run in scalar context# thus getting the count of captured elements (1) rather than the value of $1cmp_ok $ExtUtils::MakeMaker::Revision, '>', 1;cmp_ok $ExtUtils::MM_VMS::Revision,    '>', 1;

⌨️ 快捷键说明

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