in reply to Re: organizing/ running non-module related tests
in thread organizing/ running non-module related tests
the tests are similar to what goes on in a module distro. i have a t/ directory that's filling up with DBI-based scripts.
what i'm looking for is an alternative to running each test (or each step of the migration) by hand. the "wrapper" would basically be something like:
which looks an *aweful* lot like a make target to me.system( 'my/dir/01_step1.pl' ); system( 'my/dir/01_step2.pl' ); system( 'my/dir/01_step3.pl' );
the alternative is: [ mybox ] --> ./01_step1.pl ad nauseam.
and it's one DB to another .. so there's no real need for files ....
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: organizing/ running non-module related tests
by graff (Chancellor) on Sep 20, 2005 at 19:10 UTC | |
by geektron (Curate) on Sep 20, 2005 at 19:39 UTC |