]> 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 e1f0dc851867db7250b17f0765a554dc2b702fba..3ecc0cf0e6bc2c28c350fa73d4b19eff05dd4acd 100755 (executable)
@@ -1,15 +1,24 @@
 #!/usr/bin/perl
 
 use strict;
-
-my($test_count, $method);
-BEGIN { $test_count = 15 ; $method = '' }
-
-use Test::More tests => $test_count;
-
 use FindBin;
 use lib $FindBin::RealBin;
 
 use testload;
 
-check_basic_with_datetool($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;
+
+ok($detected, 'auto-detected a datetool');
+
+SKIP: {
+  skip("no datetools installed", $test_count - 1) unless $detected;
+  check_bulk_with_datetool();
+}