X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=current%2Ft%2F06_cal.t;h=b2807a9f5af93fee38cdf5e44c1b3525cb8b5c1c;hb=982e2bb08f00d800e2cd9fb65b108231719c8a65;hp=547113c449ec94bbd8997d4fc0aaad8ded6489ef;hpb=36de36eb82dffed27739d6d353669a1e80570de5;p=deb_pkgs%2Flibhtml-calendarmonth-perl.git diff --git a/current/t/06_cal.t b/current/t/06_cal.t index 547113c..b2807a9 100755 --- a/current/t/06_cal.t +++ b/current/t/06_cal.t @@ -7,14 +7,20 @@ use lib $FindBin::RealBin; use testload; my($test_count, $method); -BEGIN { $test_count = case_count() + 2 ; $method = 'cal' } +BEGIN { + $method = 'cal'; + $test_count = bulk_count() + odd_count() + 3; +} use Test::More tests => $test_count; +use constant DTC => 'HTML::CalendarMonth::DateTool'; + +use_ok(DTC); + SKIP: { - my $CAL; - chomp($CAL = `which cal`); - skip("$method not installed", $test_count) unless -x $CAL; + skip("$method not installed", $test_count - 1) unless DTC->_cal_cmd; check_datetool($method); - check_basic_with_datetool($method); + check_bulk_with_datetool($method); + check_odd_with_datetool($method); }