Back out r11057 which breaks one of the chained tests, whilst not fixing the bug...
[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 => 1;
8 use Test::Exception;
9
10 TODO: {
11     local $TODO = 'Does not work yet';
12
13 lives_ok {
14     require TestAppClassExceptionSimpleTest;
15 } 'Can load application';
16
17 }
18