Michael G Schwern <[EMAIL PROTECTED]> wrote: > It also makes it technically possible to allow the test to change it's plan > mid-stream, though the consequences and interface for that do require some > thought.
With some sugar, that could actually be quite handy for something like
test blocks. E.g.:
{
plan add => 2;
ok( 1, "wibble" );
ok(1, "wobble" );
}
David
