proposal for fragment spec
[catagits/Catalyst-Runtime.git] / t / custom_exception_class_simple.t
CommitLineData
08f9c848 1use strict;
2use warnings;
3use FindBin qw/$Bin/;
4use lib "$Bin/lib";
41a8bf1f 5use Test::More tests => 2;
2a56ace9 6use Test::Fatal;
08f9c848 7
2a56ace9 8is exception {
08f9c848 9 require TestAppClassExceptionSimpleTest;
2a56ace9 10}, undef, 'Can load application';
41a8bf1f 11
12
2a56ace9 13is exception {
41a8bf1f 14 Catalyst::Exception->throw
2a56ace9 15}, undef, 'throw is properly stubbed out';
41a8bf1f 16
17
18