Merge branch 'master' into gsoc_breadboard
[catagits/Catalyst-Runtime.git] / t / custom_exception_class_simple.t
index e358043..24983fa 100644 (file)
@@ -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';
+
+