ExtUtils::MakeMaker, and t/ sub-directories

2007-02-08 Thread Nik Clayton
[ I vaguely recall a discussion about this, but my search-fu is weak, and I can't find it ] Is there a standard way/idiom to get ExtUtils::MakeMaker to support tests in subdirectories of t/? I've got a bunch of tests, and rather than client-ls.t, client-add.t, client-commit.t, etc, I'd like

Re: ExtUtils::MakeMaker, and t/ sub-directories

2007-02-08 Thread Paul Johnson
On Thu, Feb 08, 2007 at 09:26:01AM +, Nik Clayton wrote: [ I vaguely recall a discussion about this, but my search-fu is weak, and I can't find it ] Is there a standard way/idiom to get ExtUtils::MakeMaker to support tests in subdirectories of t/? I've got a bunch of tests, and

Re: ExtUtils::MakeMaker, and t/ sub-directories

2007-02-08 Thread Nik Clayton
Paul Johnson wrote: On Thu, Feb 08, 2007 at 09:26:01AM +, Nik Clayton wrote: [ I vaguely recall a discussion about this, but my search-fu is weak, and I can't find it ] Is there a standard way/idiom to get ExtUtils::MakeMaker to support tests in subdirectories of t/? I've got a bunch

Re: ExtUtils::MakeMaker, and t/ sub-directories

2007-02-08 Thread Christopher H. Laco
Nik Clayton wrote: Paul Johnson wrote: On Thu, Feb 08, 2007 at 09:26:01AM +, Nik Clayton wrote: [ I vaguely recall a discussion about this, but my search-fu is weak, and I can't find it ] Is there a standard way/idiom to get ExtUtils::MakeMaker to support tests in subdirectories of t/?

Re: ExtUtils::MakeMaker, and t/ sub-directories

2007-02-08 Thread Andy Lester
On Feb 8, 2007, at 1:26 AM, Nik Clayton wrote: [ I vaguely recall a discussion about this, but my search-fu is weak, and I can't find it ] Is there a standard way/idiom to get ExtUtils::MakeMaker to support tests in subdirectories of t/? I've got a bunch of tests, and rather than

Re: ExtUtils::MakeMaker, and t/ sub-directories

2007-02-08 Thread Andy Lester
On Feb 8, 2007, at 1:26 AM, Nik Clayton wrote: [ I vaguely recall a discussion about this, but my search-fu is weak, and I can't find it ] Is there a standard way/idiom to get ExtUtils::MakeMaker to support tests in subdirectories of t/? I've got a bunch of tests, and rather than

Re: ExtUtils::MakeMaker, and t/ sub-directories

2007-02-08 Thread brian d foy
In article [EMAIL PROTECTED], Andy Lester [EMAIL PROTECTED] wrote: On Feb 8, 2007, at 1:26 AM, Nik Clayton wrote: [ I vaguely recall a discussion about this, but my search-fu is weak, and I can't find it ] Is there a standard way/idiom to get ExtUtils::MakeMaker to support tests

Re: ExtUtils::MakeMaker, and t/ sub-directories

2007-02-08 Thread brian d foy
In article [EMAIL PROTECTED], Nik Clayton [EMAIL PROTECTED] wrote: Is there a standard way/idiom to get ExtUtils::MakeMaker to support tests in subdirectories of t/? I don't know of a standard idiom, but I created Test::Manifest so I didn't have to live with MakeMaker's method of getting

Re: ExtUtils::MakeMaker, and t/ sub-directories

2007-02-08 Thread Andy Lester
Although Andy says that MakeMaker can't do it, MakeMaker has a built-in extension mechanism with the MY::* namespace to override parts of itself. True enough. I have standard extensions of MY::postamble in all my Makefile.PLs so that I have targets for tags and critic. sub

Re: ExtUtils::MakeMaker, and t/ sub-directories

2007-02-08 Thread Adam Kennedy
Christopher H. Laco wrote: Nik Clayton wrote: Paul Johnson wrote: On Thu, Feb 08, 2007 at 09:26:01AM +, Nik Clayton wrote: [ I vaguely recall a discussion about this, but my search-fu is weak, and I can't find it ] Is there a standard way/idiom to get ExtUtils::MakeMaker to support