in reply to Re: MakeMaker and multiple test directories
in thread MakeMaker and multiple test directories

Ah-ha!

It turns out that Regexp::Common has a fix for this in its Makefile.PL:

my @tests = qw {t/*.t t/*/*.t}; WriteMakefile ( ... test => {TESTS => $^O eq 'MSWin32' ? "@{[map {glob} @tests]}" : "@tests" } );

That rocks! I plan to incorporate it in the next release of Class::MakeMethods.

Replies are listed 'Best First'.
Re^3: MakeMaker and multiple test directories
by simonm (Vicar) on Sep 02, 2004 at 20:11 UTC