X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=current%2Ft%2F01_autodetect.t;h=3ecc0cf0e6bc2c28c350fa73d4b19eff05dd4acd;hb=982e2bb08f00d800e2cd9fb65b108231719c8a65;hp=b8bfd99dc62110ba0674cb3f007156f6d0ebfb9f;hpb=36de36eb82dffed27739d6d353669a1e80570de5;p=deb_pkgs%2Flibhtml-calendarmonth-perl.git diff --git a/current/t/01_autodetect.t b/current/t/01_autodetect.t index b8bfd99..3ecc0cf 100755 --- a/current/t/01_autodetect.t +++ b/current/t/01_autodetect.t @@ -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(); +}