Test::Most was written because I was tired of seeing boilerplate code like:
use strict;
use warnings;
use Test::More tests => 23;
use Test::Exception;
use Test::Differences;
So now it's down to this:
use strict;
use warnings;
use Test::Most tests => 23;
But I'm th
For Test::Class fans:
Here's the announcement of my Test::Class::Most:
http://blogs.perl.org/users/ovid/2010/01/-package-sometestclass.html
And if you can't wait for the CPAN upload (I'm sure there's no burning desire
for this):
http://github.com/Ovid/Test-Class-Most
Basically, use this m