background image
<< The Good News | Plan? There Ain't No Plan! >>
<< The Good News | Plan? There Ain't No Plan! >>
The Bad News
The Bad News
You have to keep adjusting the # of tests when you add a date.
use Test::More tests => ##;
There are some tricks:
# For each date, we run 8 tests.
use Test::More tests => keys %ICal_Dates * 8;
There's also 'no_plan':
use Test::More 'no_plan';