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;
plan tests => keys %ICal_Dates * 8;

and then there's 'no_plan'.

use Test::More 'no_plan';

| toc |