| Current Path : /proc/self/root/proc/thread-self/root/usr/share/doc/perl-Test-Requires/t/ |
| Current File : //proc/self/root/proc/thread-self/root/usr/share/doc/perl-Test-Requires/t/06_perlver.t |
BEGIN { $ENV{RELEASE_TESTING} = 0 };
use strict;
use warnings;
use Test::More 'no_plan';
use Test::Requires;
test_requires '5.005';
test_requires 'v5.5';
pass 'should reach here';
unless ($] > 5.998) {
test_requires '5.999';
fail 'do not reach here';
}