Re: Devel::Cover in MakeMaker

[email protected] (James E Keenan) Fri, 15 Jun 2007 08:51:46 -0400
Newsgroups perl.qa,perl.qa.metrics
Message-ID <[email protected]>
Stephen Vance wrote:
> I'm setting up an agile development environment for a client while 
> writing modules most likely targeted for CPAN. I'd like to generate 
> coverage on every invocation of 'make test'. What's the current state of 
> making this happen?
> 
Do you need anything more than a shell function like this?

harness ()
{
     HARNESS_PERL_SWITCHES=-MDevel::Cover make test
}


jimk