Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
Recently I got off my duff and finally made a production release of Test::Kit. Do you like Test::Most but it doesn't have the testing modules you want? Just use Test::Kit instead. For example, instead of this at the beginning of half of your test files:
use Test::More 'no_plan';
use Test::Exception;
use Test::XML;
Turn those into a test kit with this:
package My::Custom::Tests;
use Test::Kit qw(
Test::Exception
Test::XML
);
1;
And in your test programs:
use My::Custom::Tests 'no_plan'; # or whatever you pass to Test::More
Do you now allow JSON serialization but don't want to add Test::JSON to every test program? Just add it to your test kit:
package My::Custom::Tests;
use Test::Kit qw(
Test::Exception
Test::XML
Test::JSON
);
1;
... and all of your test programs now have JSON tests functions.
It's a much nicer way of managing your test suites. Duplicating boilerplate is bad.
My problem with Test::Most, et al.. (Score:1)
Is importing a bunch of functions one may never use. The unnecessary namespace pollution makes me cringe.
Re: (Score:2)
So what? Besides, you use Test::More already, right? I'm sure it exports plenty of functions you don't use. Plus, you can exclude functions you don't want.
Re: (Score:1)
I didn't say I was rational about it. :]
But even if T::M puts unused stuff, that's no excuse for piling in more.
Re: (Score:2)
But you don't have to pile in more. You can specifically exclude anything you don't need. That's not something you can do with just "use"ing the modules :)