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=e87ed80dbe96e0181d3b028446e24900bc257b0e;hb=gsoc_breadboard;hpb=5c6d829db5bd01e575b11b00c1ea26d5888d9bf0 diff --git a/t/custom_exception_class_simple.t b/t/custom_exception_class_simple.t index e87ed80..24983fa 100644 --- a/t/custom_exception_class_simple.t +++ b/t/custom_exception_class_simple.t @@ -4,15 +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; -TODO: { - local $TODO = 'Does not work yet'; - lives_ok { require TestAppClassExceptionSimpleTest; } 'Can load application'; -} + +lives_ok { + Catalyst::Exception->throw +} 'throw is properly stubbed out'; + +