in reply to How to test less with Test::More?

You can do the following: If you have planned the number of tests, then you will get an error that too less tests were run (of course), but you can just ignore this or use no_plan.

Replies are listed 'Best First'.
Re^2: How to test less with Test::More?
by Mr. Muskrat (Canon) on Aug 19, 2004 at 15:50 UTC
    I think that it would make more sense to use a lookup table. Then the test script could execute all tests in a predefined order by default but allow the use of a command line option to run a specific test or set of tests. (And it wouldn't have to use a BASIC-style goto.)
      Too complicated. I need this feature only for quick'n'dirty debugging.
        Too complicated? Then you have too many tests in one file and it's time to split them up into separate test scripts.