Your IP : 216.73.217.90


Current Path : /proc/self/root/proc/self/root/proc/self/root/usr/share/doc/perl-Test-Requires/t/
Upload File :
Current File : //proc/self/root/proc/self/root/proc/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';
}