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=e358043c273f5f90f0a42b31ea935aff1daa134a;hb=gsoc_breadboard;hpb=f1abcb4a7a3374b2e400b33b9cf5c0c6a5d49734 diff --git a/t/custom_exception_class_simple.t b/t/custom_exception_class_simple.t index e358043..24983fa 100644 --- a/t/custom_exception_class_simple.t +++ b/t/custom_exception_class_simple.t @@ -4,12 +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'; -1; + +lives_ok { + Catalyst::Exception->throw +} 'throw is properly stubbed out'; + +