On Tue, Mar 15, 2005 at 10:33:25AM -0500, Geoffrey Young wrote:
>
> > test => { TESTS => join ' ', map { glob } qw( t/*/*.t t/*/*/*.t ) },
>
> but slashes aren't portable, right? I don't think you can get rid of
> File::Spec.
In this case they should be portable. Windows will understand them
> test => { TESTS => join ' ', map { glob } qw( t/*/*.t t/*/*/*.t ) },
but slashes aren't portable, right? I don't think you can get rid of
File::Spec.
> Also, I agree that the use-Test-Plan-after-Test-More caveat is icky.
well, it's a caveat, not a requirement :)
the way it works now is t
Rock!
First, just a nitpicky thing -- You could simplify Makefile.PL to not
need File::*:
WriteMakefile(
...
test => { TESTS => join ' ', map { glob } qw( t/*/*.t t/*/*/*.t ) },
...
);
Also, I agree that the use-Test-Plan-after-Test-More caveat is icky.
How about modifying Test::Plan::impo