in reply to Re: Setting up a test suite in perl
in thread Setting up a test suite in perl

I do like the idea of breaking down the test into individual directories, this way I can store all the data related with the test, input or output, in that directory and I can run all the tests using:

make TEST_FILES=t/*/*.t TEST_VERBOSE=1 test

Thanks for your help!