import SOAP-WSDL 2.00.05 from CPAN
git-cpan-module: SOAP-WSDL git-cpan-version: 2.00.05 git-cpan-authorid: MKUTTER git-cpan-file: authors/id/M/MK/MKUTTER/SOAP-WSDL-2.00.05.tar.gz
This commit is contained in:
committed by
Michael G. Schwern
parent
c3e3d1908e
commit
c2ac24dd0f
@@ -0,0 +1,24 @@
|
||||
# perl usage:
|
||||
use lib 't/lib';
|
||||
use TAP::Harness;
|
||||
use TAP::Formatter::HTML;
|
||||
my $fmt = TAP::Formatter::HTML->new({
|
||||
verbosity => -2,
|
||||
});
|
||||
|
||||
use File::Find::Rule;
|
||||
my @tests = sort { $a cmp $b } File::Find::Rule->file()
|
||||
->name( '*.t' )
|
||||
->in( 't/' );
|
||||
local $ENV{TEST_VERBOSE} = 1;
|
||||
my $harness = TAP::Harness->new(
|
||||
{
|
||||
formatter => $fmt ,
|
||||
merge => 1,
|
||||
# verbosity => 1,
|
||||
lib => [ 't/lib', 'lib' ],
|
||||
switches => ($ARGV[0] eq '--cover')
|
||||
? [ '-MDevel::Cover=-ignore,.,-select,^lib/.+,-coverage,statement,subroutine,condition,branch' ]
|
||||
: [],
|
||||
});
|
||||
$harness->runtests( @tests );
|
||||
Reference in New Issue
Block a user