]> git.donarmstrong.com Git - deb_pkgs/libhtml-calendarmonth-perl.git/blobdiff - current/t/01_autodetect.t
Imported Upstream version 2.04
[deb_pkgs/libhtml-calendarmonth-perl.git] / current / t / 01_autodetect.t
diff --git a/current/t/01_autodetect.t b/current/t/01_autodetect.t
deleted file mode 100755 (executable)
index 3ecc0cf..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use FindBin;
-use lib $FindBin::RealBin;
-
-use testload;
-
-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();
-}