1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#!perl -w
use strict;
no strict "vars";
use Date::Pcalc qw( check_compressed );
# ======================================================================
# $flag = check_compressed($date);
# ======================================================================
print "1..5\n";
$n = 1;
if (check_compressed(48163) == 1) {print "ok $n\n";} else {print "not ok $n\n";}
$n++;
if (check_compressed( 0) == 0) {print "ok $n\n";} else {print "not ok $n\n";}
$n++;
if (check_compressed(13170) == 1) {print "ok $n\n";} else {print "not ok $n\n";}
$n++;
if (check_compressed(12892) == 1) {print "ok $n\n";} else {print "not ok $n\n";}
$n++;
if (check_compressed(12893) == 0) {print "ok $n\n";} else {print "not ok $n\n";}
__END__
|