]> git.donarmstrong.com Git - deb_pkgs/libhtml-calendarmonth-perl.git/blobdiff - t/01_autodetect.t
New upstream release
[deb_pkgs/libhtml-calendarmonth-perl.git] / t / 01_autodetect.t
index b8bfd99dc62110ba0674cb3f007156f6d0ebfb9f..3ecc0cf0e6bc2c28c350fa73d4b19eff05dd4acd 100755 (executable)
@@ -6,9 +6,19 @@ use lib $FindBin::RealBin;
 
 use testload;
 
-my($test_count, $method);
-BEGIN { $test_count = case_count() ; $method = '' }
+use HTML::CalendarMonth::DateTool;
+
+my($test_count, $detected);
+BEGIN {
+  $test_count = bulk_count() + 1;
+  eval { $detected = HTML::CalendarMonth::DateTool->new };
+}
 
 use Test::More tests => $test_count;
 
-check_basic_with_datetool($method);
+ok($detected, 'auto-detected a datetool');
+
+SKIP: {
+  skip("no datetools installed", $test_count - 1) unless $detected;
+  check_bulk_with_datetool();
+}