X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Fcustom_exception_class_simple.t;h=24983fa036e88463a7f948871dacae22f803c9af;hp=8c8c0c245a510575c043ae3d66685a774b21daf3;hb=41a8bf1f4e417f1439866c09c08a3998ae81528a;hpb=69c6b6cb43d15b6a145523f4d83f3855b6c3677e diff --git a/t/custom_exception_class_simple.t b/t/custom_exception_class_simple.t index 8c8c0c2..24983fa 100644 --- a/t/custom_exception_class_simple.t +++ b/t/custom_exception_class_simple.t @@ -4,9 +4,17 @@ use strict; use warnings; use FindBin qw/$Bin/; use lib "$Bin/lib"; -use Test::More tests => 1; +use Test::More tests => 2; use Test::Exception; lives_ok { require TestAppClassExceptionSimpleTest; } 'Can load application'; + + +lives_ok { + Catalyst::Exception->throw +} 'throw is properly stubbed out'; + + +