📄 revision.t
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -