App-git-ship
view release on metacpan or search on metacpan
$output = qx{git config --global --get-regexp user.* 2>/dev/null};
$output =~ s![\n\r]!!g;
plan skip_all => "Cannot run with unknown git user: $output"
unless $output =~ /user\.email/ and $output =~ /user\.name/;
}
sub import {
my $class = shift;
my $caller = caller;
strict->import;
warnings->import;
eval "package $caller; use Test::More;1" or die $@;
}
1;
( run in 0.383 second using v1.01-cache-2.11-cpan-299005ec8e3 )