in reply to Test::Simple tests in multiple folders?

If you use Module::Build to generate the Makefile.PL, this section from the documentation is relevant for you:
If the "recursive_test_files" property is true, then the "t/" directory will be scanned recursively for "*.t" files.

If not, what build system do you use?

Update: ExtUtils::MakeMaker has this in the documentation:

Additional lowercase attributes
...
test {TESTS => 't/*.t'}

I guess this is the place where you start to experiment, perhaps 't/*.t t/*/*.t' does what you want.

Replies are listed 'Best First'.
Re^2: Test::Simple tests in multiple folders?
by Anonymous Monk on Sep 10, 2008 at 02:09 UTC
    I've tested it and that works
    C:\temp>nmake test Microsoft (R) Program Maintenance Utility Version 1.50 Copyright (c) Microsoft Corp 1988-94. All rights reserved. C:\Perl\bin\perl.exe "-MExtUtils::Command::MM" "-e" "test_harn +ess(0, 'blib\lib', 'blib\arch')" t/*.t t/*/*.t t/T-S-T.......ok t/t09/0901....ok All tests successful. Files=2, Tests=2, 0 wallclock secs ( 0.00 cusr + 0.00 csys = 0.00 C +PU)
Re^2: Test::Simple tests in multiple folders?
by jdrago_999 (Hermit) on Sep 09, 2008 at 20:09 UTC
    If not, what build system do you use?
    I use ExtUtils::MakeMaker.

    Thanks for the tip - I'll look into it.