X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=t%2F03_datetime.t;h=d1523815c249749740825f7aa30bb54ee5db1dae;hb=HEAD;hp=3735b1a1c23a90ed9073d37b0dc51f76f2d79088;hpb=627a8e2fb05a744a8381c58bf5fff6492a1cff02;p=deb_pkgs%2Flibhtml-calendarmonth-perl.git diff --git a/t/03_datetime.t b/t/03_datetime.t old mode 100755 new mode 100644 index 3735b1a..d152381 --- a/t/03_datetime.t +++ b/t/03_datetime.t @@ -7,7 +7,10 @@ use lib $FindBin::RealBin; use testload; my($test_count, $method); -BEGIN { $test_count = case_count() + 4 ; $method = 'DateTime' } +BEGIN { + $method = 'DateTime'; + $test_count = bulk_count() + odd_count() + woy_count() + 2; +} use Test::More tests => $test_count; @@ -15,6 +18,7 @@ SKIP: { eval "use $method"; skip("$method not installed", $test_count) if $@; check_datetool($method); - check_basic_with_datetool($method); + check_bulk_with_datetool($method); + check_odd_with_datetool($method); check_woy_with_datetool($method); }