Test::Distribution
- http://search.cpan.org/dist/Test-Distribution
- Originally written by Marcel Grünauer
- Now maintained by Sagar R. Shah
- Provides standard tests for a single distribution.
- Single script required to test a complete distribution.
use Test::More;
BEGIN {
eval { require Test::Distribution; };
if($@) { plan skip_all => 'Test::Distribution not installed'; }
else { import Test::Distribution; }
}
