]> git.donarmstrong.com Git - deb_pkgs/libhtml-calendarmonth-perl.git/blobdiff - t/04_datemanip.t
New upstream release
[deb_pkgs/libhtml-calendarmonth-perl.git] / t / 04_datemanip.t
index 05c4349689c7cec21ad3d89b53081800f615c35c..dd6046ff9ca25be03813edcb24f671223622c0a4 100755 (executable)
@@ -7,7 +7,10 @@ use lib $FindBin::RealBin;
 use testload;
 
 my($test_count, $method);
-BEGIN { $test_count = case_count() + 4 ; $method = 'Date::Manip' }
+BEGIN {
+  $method = 'Date::Manip';
+  $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);
 }