in reply to Re: Test Or Die
in thread Test Or Die

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 :-))

Replies are listed 'Best First'.
Re^3: Test Or Die
by Arunbear (Prior) on May 14, 2009 at 16:54 UTC
    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 :-))