]> git.donarmstrong.com Git - deb_pkgs/libhtml-calendarmonth-perl.git/blob - t/02_timelocal.t
c952aa713ae83b030082bfc1fadc8b00c52016d9
[deb_pkgs/libhtml-calendarmonth-perl.git] / t / 02_timelocal.t
1 #!/usr/bin/perl
2
3 use strict;
4 use FindBin;
5 use lib $FindBin::RealBin;
6
7 use testload;
8
9 my($test_count, $method);
10 BEGIN { $test_count = case_count() + 2 ; $method = 'Time::Local' }
11
12 use Test::More tests => $test_count;
13
14 SKIP: {
15   eval "use $method";
16   skip("$method not installed", $test_count) if $@;
17   check_datetool($method);
18   check_basic_with_datetool($method);
19 }