The nginx bullshit can just die
[catagits/Catalyst-Runtime.git] / t / custom_exception_class_simple.t
1 #!/usr/bin/env perl
2
3 use strict;
4 use warnings;
5 use FindBin qw/$Bin/;
6 use lib "$Bin/lib";
7 use Test::More tests => 2;
8 use Test::Exception;
9
10 lives_ok {
11     require TestAppClassExceptionSimpleTest;
12 } 'Can load application';
13
14
15 lives_ok {
16     Catalyst::Exception->throw
17 } 'throw is properly stubbed out';
18
19
20