Merge branch '104-path_empty_brackets' of https://github.com/grim8634/catalyst-runtim...
[catagits/Catalyst-Runtime.git] / t / custom_exception_class_simple.t
1 use strict;
2 use warnings;
3 use FindBin qw/$Bin/;
4 use lib "$Bin/lib";
5 use Test::More tests => 2;
6 use Test::Fatal;
7
8 is exception {
9     require TestAppClassExceptionSimpleTest;
10 }, undef, 'Can load application';
11
12
13 is exception {
14     Catalyst::Exception->throw
15 }, undef, 'throw is properly stubbed out';
16
17
18