http://www.perlmonks.org?node_id=477073


in reply to How not to test exceptions

I usually test my exceptions using Test::Exception, but I don't know if it plays well with the Error module.

Replies are listed 'Best First'.
Re^2: How not to test exceptions
by adrianh (Chancellor) on Jul 22, 2005 at 11:28 UTC
    I usually test my exceptions using Test::Exception, but I don't know if it plays well with the Error module.

    It should behave perfectly. Error is just some syntactic sugar around Perl's normal exception handling system. The OP's test would become the IMHO much more readable:

    use Test::More tests => 2; use Test::Exception; BEGIN { use_ok( 'MyModule' ) }; throws_ok { MyModule->foo( 'badparam'' ) } 'MyModule::Exception';