in reply to Grouping tests

This is where Test-Harness's 'prove' command-line tool shines, you can specify exactly which tests you want to run. From the doco:
* prove is granular prove lets your run against only the files you want to check. Running "prove t/live/ t/master.t" checks every *.t in t/live, plus t/master.t.
Check out the -r option as well.

Replies are listed 'Best First'.
Re^2: Grouping tests
by forkboy (Sexton) on Sep 19, 2007 at 07:02 UTC
    Thanks Prove looks very close to what I want,
    I played around a bit with Build.PL and setting up custom ACTION_test subclasses, but that seemed very clunky (they do say its alpha) and difficult to maintain.