X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=1.17%2Ft%2F02_timelocal.t;fp=1.17%2Ft%2F02_timelocal.t;h=c952aa713ae83b030082bfc1fadc8b00c52016d9;hb=1aced5435f99c2faf1af0eca945374099063fbc5;hp=0000000000000000000000000000000000000000;hpb=36de36eb82dffed27739d6d353669a1e80570de5;p=deb_pkgs%2Flibhtml-calendarmonth-perl.git diff --git a/1.17/t/02_timelocal.t b/1.17/t/02_timelocal.t new file mode 100755 index 0000000..c952aa7 --- /dev/null +++ b/1.17/t/02_timelocal.t @@ -0,0 +1,19 @@ +#!/usr/bin/perl + +use strict; +use FindBin; +use lib $FindBin::RealBin; + +use testload; + +my($test_count, $method); +BEGIN { $test_count = case_count() + 2 ; $method = 'Time::Local' } + +use Test::More tests => $test_count; + +SKIP: { + eval "use $method"; + skip("$method not installed", $test_count) if $@; + check_datetool($method); + check_basic_with_datetool($method); +}