in reply to How would I make Test::Harness fail-fast?
Depending on the criteria, the opt list to the module should be used to delineate the test names on which you wish to quit early.use Test::More qw/no_plan/; use autodie qw/use_ok require_ok ok .../; require_ok('Some::Class'); use_ok('Some::Class'); . . .
|
|---|