In article
<[EMAIL PROTECTED]>, David
Golden <[EMAIL PROTECTED]> wrote:
> On 11/2/06, Chris Dolan <[EMAIL PROTECTED]> wrote:
> > It's not an EU::MM bug -- it's a new M::B feature.
> > What should you do? You're not going to like this answer:
> > Don't use recursive test directories. :-)
> Does Test::Manifest support nested test files? If so, that might be
> an alternative.
I'm not sure what "nested" means, but Test::Manifest just takes a list
of files in t/test_manifest and passes them to run_all_tests. You can
put whatever you like in test_manifest, although all pathnames are
relative to t/.
I have thought about a `make testmanifest` that would work like `make
manifest`, but I haven't really needed it. If I have a lot of files, I
just :
$ find . -name "*.t" > test_manifest
I think the latest version of Test::Manifest has support for primitive
#include like behavior, so the test_manifest might reference other files
that include other lists of tests, recursively. If it's not on CPAN,
I'll have to take my local copy and upload it.