in reply to Re: How to include multiple modules in one package?
in thread How to include multiple modules in one package?

I've gotten it to work with subdirectories in the tree, and including the subdirectory files in the MANIFEST file.

One thing that irks me: the tests for the subdirectories are run after the root directory. In my case, the subdirectories contain base classes which the root needs. How can I control the order of testing?

Replies are listed 'Best First'.
Re: Testing Order?
by TheoPetersen (Priest) on Feb 20, 2001 at 01:41 UTC
    I'm not sure I follow. Are these the automatic tests (test.pl && t/*.t)?

    If so, the usual trick is to name the files t/00test.t, t/01test.t and so on to get make to run them in the order you want.