in reply to Test Or Die

Or you could use Fatal e.g.
use strict; use warnings; use Test::More tests => 2; use Fatal qw/ ok /; ok(1 == 2 , '1 is 2'); ok(1 == 1 , '1 is 1');

Replies are listed 'Best First'.
Re^2: Test Or Die
by Bloodnok (Vicar) on May 14, 2009 at 16:35 UTC
    Fatal is deprecated, use autodie instead e.g.
    use Test::More qw/no_plan/; use autodie qw/use_ok require_ok ok .../; require_ok('Some::Class'); use_ok('Some::Class'); . . .
    A user level that continues to overstate my experience :-))
      I was referring to the Fatal that is part of the Perl core (not the one included in the autodie distribution) and its documentation doesn't mention anything about it being deprecated.
        ...it seems that there are 2 modules called Fatal - the one to which I referred is here

        A user level that continues to overstate my experience :-))