|
#!/usr/bin/perl
if ( not $ENV {TEST_AUTHOR} ) {
Test::More-> import ;
my $msg = 'Author test. Set TEST_AUTHOR environment variable to a true value to run.' ;
plan( skip_all => $msg );
}
if ($@) {
Test::More-> import ;
plan( skip_all => 'Test::Kwalitee not installed; skipping' );
}
|