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
CommitLineData
08f9c848 1#!/usr/bin/env perl
2
3use strict;
4use warnings;
5use FindBin qw/$Bin/;
6use lib "$Bin/lib";
7use Test::More tests => 1;
8use Test::Exception;
9
5c6d829d 10TODO: {
11 local $TODO = 'Does not work yet';
12
08f9c848 13lives_ok {
14 require TestAppClassExceptionSimpleTest;
15} 'Can load application';
16
5c6d829d 17}
08f9c848 18