X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=1.19%2Ft%2F03_datetime.t;fp=1.19%2Ft%2F03_datetime.t;h=3735b1a1c23a90ed9073d37b0dc51f76f2d79088;hb=e572b7973fb212cb24fbefc385f28f473f02df0c;hp=0000000000000000000000000000000000000000;hpb=9d8d5103edda5befbcae635c8a6edebe7431e094;p=deb_pkgs%2Flibhtml-calendarmonth-perl.git diff --git a/1.19/t/03_datetime.t b/1.19/t/03_datetime.t new file mode 100755 index 0000000..3735b1a --- /dev/null +++ b/1.19/t/03_datetime.t @@ -0,0 +1,20 @@ +#!/usr/bin/perl + +use strict; +use FindBin; +use lib $FindBin::RealBin; + +use testload; + +my($test_count, $method); +BEGIN { $test_count = case_count() + 4 ; $method = 'DateTime' } + +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); + check_woy_with_datetool($method); +}