]> git.donarmstrong.com Git - deb_pkgs/libhtml-calendarmonth-perl.git/blobdiff - t/06_cal.t
New upstream release
[deb_pkgs/libhtml-calendarmonth-perl.git] / t / 06_cal.t
index 547113c449ec94bbd8997d4fc0aaad8ded6489ef..b2807a9f5af93fee38cdf5e44c1b3525cb8b5c1c 100755 (executable)
@@ -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);
 }